mirror of
https://github.com/julia-actions/cache.git
synced 2026-02-15 02:26:53 +08:00
Compare commits
27 Commits
v2
...
cv/reusabl
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b02b27b5c2 | ||
|
|
69674bfc14 | ||
|
|
0a42a3633d | ||
|
|
9d9d37994b | ||
|
|
e49ff51323 | ||
|
|
5a04d111ea | ||
|
|
b4c6d4b10c | ||
|
|
46044e72ab | ||
|
|
41be7ea14c | ||
|
|
ef17b41963 | ||
|
|
e81fae1916 | ||
|
|
1c132479c0 | ||
|
|
e7a9e0f340 | ||
|
|
7096dc43a1 | ||
|
|
cc7375cd98 | ||
|
|
0217e24a50 | ||
|
|
66728dbe42 | ||
|
|
fd02edc686 | ||
|
|
a216f5035e | ||
|
|
f5316fefee | ||
|
|
11cd6b1ef0 | ||
|
|
69d3a9406a | ||
|
|
4818bbd194 | ||
|
|
d9466e9938 | ||
|
|
096c710202 | ||
|
|
3f52c6b71c | ||
|
|
19f527d7a8 |
79
.github/workflows/ReusableTest.yml
vendored
Normal file
79
.github/workflows/ReusableTest.yml
vendored
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
---
|
||||||
|
name: Reusable Test
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
inputs: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
reusable:
|
||||||
|
uses: ./.github/workflows/ReusableWorkflow.yml
|
||||||
|
|
||||||
|
duplicate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
|
- uses: julia-actions/setup-julia@v2
|
||||||
|
with:
|
||||||
|
version: "1"
|
||||||
|
- name: Save cache
|
||||||
|
uses: ./
|
||||||
|
- name: Export Context
|
||||||
|
run: |
|
||||||
|
jq -c <<<"$github_json" >github.json
|
||||||
|
jq -c <<<"$env_json" >env.json
|
||||||
|
jq -c <<<"$job_json" >job.json
|
||||||
|
jq -c <<<"$steps_json" >steps.json
|
||||||
|
jq -c <<<"$runner_json" >runner.json
|
||||||
|
jq -c <<<"$inputs_json" >inputs.json
|
||||||
|
env:
|
||||||
|
github_json: ${{ toJSON(github) }}
|
||||||
|
env_json: ${{ toJSON(env) }}
|
||||||
|
job_json: ${{ toJSON(job) }}
|
||||||
|
steps_json: ${{ toJSON(steps) }}
|
||||||
|
runner_json: ${{ toJSON(runner) }}
|
||||||
|
inputs_json: ${{ toJSON(inputs) }}
|
||||||
|
- name: Export environmental variables
|
||||||
|
run: jq -n env >env_vars.json
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: trigger-context
|
||||||
|
path: "*.json"
|
||||||
|
|
||||||
|
compare:
|
||||||
|
needs:
|
||||||
|
- reusable
|
||||||
|
- duplicate
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: trigger-context
|
||||||
|
path: trigger
|
||||||
|
- uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: reusable-context
|
||||||
|
path: reusable
|
||||||
|
- run: |
|
||||||
|
find .
|
||||||
|
for p in trigger/*.json; do
|
||||||
|
context_file="$(basename "$p")"
|
||||||
|
echo "$context_file"
|
||||||
|
|
||||||
|
a="$(cat trigger/$context_file)"
|
||||||
|
b="$(cat reusable/$context_file)"
|
||||||
|
|
||||||
|
echo "::group::Raw A"
|
||||||
|
jq <<<"$a"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Raw B"
|
||||||
|
jq <<<"$b"
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
echo "::group::Diff"
|
||||||
|
same=0
|
||||||
|
diff <(jq <<<"$a") <(jq <<<"$b") || same=$?
|
||||||
|
echo "::endgroup::"
|
||||||
|
|
||||||
|
[[ $same -eq 0 ]] && echo "Same" || echo "Differ"
|
||||||
|
done
|
||||||
52
.github/workflows/ReusableWorkflow.yml
vendored
Normal file
52
.github/workflows/ReusableWorkflow.yml
vendored
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
---
|
||||||
|
name: Reusable Workflow
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs: {}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
duplicate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
|
- uses: julia-actions/setup-julia@v2
|
||||||
|
with:
|
||||||
|
version: "1"
|
||||||
|
- name: Save cache
|
||||||
|
uses: ./
|
||||||
|
- name: Export Context
|
||||||
|
run: |
|
||||||
|
jq -c <<<"$github_json" >github.json
|
||||||
|
jq -c <<<"$env_json" >env.json
|
||||||
|
jq -c <<<"$job_json" >job.json
|
||||||
|
jq -c <<<"$steps_json" >steps.json
|
||||||
|
jq -c <<<"$runner_json" >runner.json
|
||||||
|
jq -c <<<"$inputs_json" >inputs.json
|
||||||
|
env:
|
||||||
|
github_json: ${{ toJSON(github) }}
|
||||||
|
env_json: ${{ toJSON(env) }}
|
||||||
|
job_json: ${{ toJSON(job) }}
|
||||||
|
steps_json: ${{ toJSON(steps) }}
|
||||||
|
runner_json: ${{ toJSON(runner) }}
|
||||||
|
inputs_json: ${{ toJSON(inputs) }}
|
||||||
|
- name: Export environmental variables
|
||||||
|
run: jq -n env >env_vars.json
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: reusable-context
|
||||||
|
path: "*.json"
|
||||||
|
- run: |
|
||||||
|
set -x
|
||||||
|
uuid="$(cat /proc/sys/kernel/random/uuid)"
|
||||||
|
echo "$uuid"
|
||||||
|
# sleep 60
|
||||||
|
# https://docs.github.com/en/rest/actions/workflow-runs?apiVersion=2022-11-28#download-workflow-run-logs
|
||||||
|
# gh api "/repos/{owner}/{repo}/actions/runs/${run_id:?}/logs" >logs.zip
|
||||||
|
# unzip -- logs.zip "*.txt"
|
||||||
|
# find .
|
||||||
|
# grep -rnH ReusableWorkflow.yml .
|
||||||
|
# grep -rnH "$uuid" .
|
||||||
|
gh run view "${run_id:?}" --log
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ github.token }}
|
||||||
|
run_id: ${{ github.run_id }}
|
||||||
@@ -64,9 +64,6 @@ By default, this action removes caches that were previously made by jobs on the
|
|||||||
GitHub automatically removes old caches after a certain period or when the repository cache allocation is full.
|
GitHub automatically removes old caches after a certain period or when the repository cache allocation is full.
|
||||||
It is, however, more efficient to explicitly remove old caches to improve caching for less frequently run jobs.
|
It is, however, more efficient to explicitly remove old caches to improve caching for less frequently run jobs.
|
||||||
|
|
||||||
For more information about Github caching generically, for example how to manually delete caches, see
|
|
||||||
[this Github documentation page](https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/caching-dependencies-to-speed-up-workflows#managing-caches).
|
|
||||||
|
|
||||||
### Cache keys
|
### Cache keys
|
||||||
|
|
||||||
The cache key that the cache will be saved as is based on:
|
The cache key that the cache will be saved as is based on:
|
||||||
|
|||||||
14
action.yml
14
action.yml
@@ -47,18 +47,12 @@ outputs:
|
|||||||
cache-hit:
|
cache-hit:
|
||||||
description: A boolean value to indicate an exact match was found for the primary key. Returns "" when the key is new. Forwarded from actions/cache.
|
description: A boolean value to indicate an exact match was found for the primary key. Returns "" when the key is new. Forwarded from actions/cache.
|
||||||
value: ${{ steps.hit.outputs.cache-hit }}
|
value: ${{ steps.hit.outputs.cache-hit }}
|
||||||
cache-paths:
|
|
||||||
description: The paths that were cached
|
|
||||||
value: ${{ steps.paths.outputs.cache-paths }}
|
|
||||||
cache-key:
|
|
||||||
description: The full cache key used
|
|
||||||
value: ${{ steps.keys.outputs.key }}
|
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'composite'
|
using: 'composite'
|
||||||
steps:
|
steps:
|
||||||
- name: Install jq
|
- name: Install jq
|
||||||
uses: dcarbone/install-jq-action@f0e10f46ff84f4d32178b4b76e1ef180b16f82c3 # v3.1.1
|
uses: dcarbone/install-jq-action@e397bd87438d72198f81efd21f876461183d383a # v3.0.1
|
||||||
with:
|
with:
|
||||||
force: false # Skip install when an existing `jq` is present
|
force: false # Skip install when an existing `jq` is present
|
||||||
|
|
||||||
@@ -127,7 +121,7 @@ runs:
|
|||||||
env:
|
env:
|
||||||
MATRIX_JSON: ${{ toJSON(matrix) }}
|
MATRIX_JSON: ${{ toJSON(matrix) }}
|
||||||
|
|
||||||
- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
|
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
|
||||||
id: cache
|
id: cache
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
@@ -178,7 +172,7 @@ runs:
|
|||||||
# - https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy
|
# - https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy
|
||||||
|
|
||||||
# Not windows
|
# Not windows
|
||||||
- uses: pyTooling/Actions/with-post-step@42e17fae05f224e5ac3d79d021a4e3577878efe5 # v4.2.2
|
- uses: pyTooling/Actions/with-post-step@9ceefdbf5dceae8c441fc393ed82344c7ca8bbdb # v3.1.1
|
||||||
if: ${{ inputs.delete-old-caches != 'false' &&
|
if: ${{ inputs.delete-old-caches != 'false' &&
|
||||||
github.ref != format('refs/heads/{0}', github.event.repository.default_branch) &&
|
github.ref != format('refs/heads/{0}', github.event.repository.default_branch) &&
|
||||||
runner.OS != 'Windows' }}
|
runner.OS != 'Windows' }}
|
||||||
@@ -191,7 +185,7 @@ runs:
|
|||||||
GH_TOKEN: ${{ inputs.token }}
|
GH_TOKEN: ${{ inputs.token }}
|
||||||
|
|
||||||
# Windows (because this action uses command prompt on windows)
|
# Windows (because this action uses command prompt on windows)
|
||||||
- uses: pyTooling/Actions/with-post-step@42e17fae05f224e5ac3d79d021a4e3577878efe5 # v4.2.2
|
- uses: pyTooling/Actions/with-post-step@9ceefdbf5dceae8c441fc393ed82344c7ca8bbdb # v3.1.1
|
||||||
if: ${{ inputs.delete-old-caches != 'false' &&
|
if: ${{ inputs.delete-old-caches != 'false' &&
|
||||||
github.ref != format('refs/heads/{0}', github.event.repository.default_branch) &&
|
github.ref != format('refs/heads/{0}', github.event.repository.default_branch) &&
|
||||||
runner.OS == 'Windows' }}
|
runner.OS == 'Windows' }}
|
||||||
|
|||||||
Reference in New Issue
Block a user