mirror of
https://github.com/julia-actions/cache.git
synced 2026-02-12 17:36:53 +08:00
Compare commits
38 Commits
v2.0.1
...
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 | ||
|
|
2b1bf4d8a1 | ||
|
|
49fd7c4af0 | ||
|
|
d343189aad | ||
|
|
315c171d17 | ||
|
|
f4098e6050 | ||
|
|
0c8892ce7f | ||
|
|
824243901f | ||
|
|
8608484607 | ||
|
|
e662c42397 | ||
|
|
e7913c2cb9 | ||
|
|
9ec3abbd64 |
12
.github/workflows/CI.yml
vendored
12
.github/workflows/CI.yml
vendored
@@ -59,7 +59,7 @@ jobs:
|
||||
env:
|
||||
JULIA_DEPOT_PATH: /tmp/julia-depot
|
||||
steps:
|
||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
- name: Set cache-name
|
||||
id: cache-name
|
||||
shell: bash
|
||||
@@ -117,7 +117,7 @@ jobs:
|
||||
env:
|
||||
JULIA_DEPOT_PATH: /tmp/julia-depot
|
||||
steps:
|
||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
- uses: julia-actions/setup-julia@v2
|
||||
with:
|
||||
version: ${{ matrix.version }}
|
||||
@@ -161,7 +161,7 @@ jobs:
|
||||
outputs:
|
||||
cache-name: ${{ steps.cache-name.outputs.cache-name }}
|
||||
steps:
|
||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
- name: Set cache-name
|
||||
id: cache-name
|
||||
run: |
|
||||
@@ -193,7 +193,7 @@ jobs:
|
||||
needs: test-save-nomatrix
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
- name: Restore cache
|
||||
id: cache
|
||||
uses: ./
|
||||
@@ -233,7 +233,7 @@ jobs:
|
||||
outputs:
|
||||
cache-name: ${{ steps.cache-name.outputs.cache-name }}
|
||||
steps:
|
||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
- name: Set cache-name
|
||||
id: cache-name
|
||||
run: |
|
||||
@@ -259,7 +259,7 @@ jobs:
|
||||
needs: test-save-cloned-registry
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
|
||||
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||
- name: Add General registry clone
|
||||
shell: julia --color=yes {0}
|
||||
run: |
|
||||
|
||||
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 }}
|
||||
33
action.yml
33
action.yml
@@ -52,7 +52,7 @@ runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- name: Install jq
|
||||
uses: dcarbone/install-jq-action@8867ddb4788346d7c22b72ea2e2ffe4d514c7bcb
|
||||
uses: dcarbone/install-jq-action@e397bd87438d72198f81efd21f876461183d383a # v3.0.1
|
||||
with:
|
||||
force: false # Skip install when an existing `jq` is present
|
||||
|
||||
@@ -66,6 +66,12 @@ runs:
|
||||
else
|
||||
depot="~/.julia"
|
||||
fi
|
||||
if [[ "$OSTYPE" == "msys" || "$OSTYPE" == "cygwin" ]]; then
|
||||
depot="${depot/#\~/$USERPROFILE}" # Windows paths
|
||||
depot="${depot//\\//}" # Replace backslashes with forward slashes
|
||||
else
|
||||
depot="${depot/#\~/$HOME}" # Unix-like paths
|
||||
fi
|
||||
echo "depot=$depot" | tee -a "$GITHUB_OUTPUT"
|
||||
|
||||
cache_paths=()
|
||||
@@ -75,7 +81,7 @@ runs:
|
||||
[ "${{ inputs.cache-packages }}" = "true" ] && cache_paths+=("$packages_path")
|
||||
registries_path="${depot}/registries"
|
||||
if [ "${{ inputs.cache-registries }}" = "true" ]; then
|
||||
if [ ! -d "${registries_path/#\~/$HOME}" ]; then
|
||||
if [ ! -d "${registries_path}" ]; then
|
||||
cache_paths+=("$registries_path")
|
||||
else
|
||||
echo "::warning::Julia depot registries already exist. Skipping restoring of cached registries to avoid potential merge conflicts when updating. Please ensure that \`julia-actions/cache\` precedes any workflow steps which add registries."
|
||||
@@ -115,7 +121,7 @@ runs:
|
||||
env:
|
||||
MATRIX_JSON: ${{ toJSON(matrix) }}
|
||||
|
||||
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
|
||||
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
|
||||
id: cache
|
||||
with:
|
||||
path: |
|
||||
@@ -132,6 +138,23 @@ runs:
|
||||
du -shc ${{ steps.paths.outputs.depot }}/* || true
|
||||
shell: bash
|
||||
|
||||
# issue https://github.com/julia-actions/cache/issues/110
|
||||
# Pkg may not run `Registry.update()` if a manifest exists, which may exist because of a
|
||||
# `Pkg.dev` call or because one is added to the repo. So be safe and update cached registries here.
|
||||
# Older (~v1.0) versions of julia that don't have `Pkg.Registry.update()` seem to always update registries in
|
||||
# Pkg operations. So this is only necessary for newer julia versions.
|
||||
- name: Update any cached registries
|
||||
if: ${{ inputs.cache-registries == 'true' }}
|
||||
continue-on-error: true
|
||||
run: |
|
||||
if [ -d "${{ steps.paths.outputs.depot }}/registries" ] && [ -n "$(ls -A "${{ steps.paths.outputs.depot }}/registries")" ]; then
|
||||
echo "Registries directory exists and is non-empty. Updating any registries"
|
||||
julia -e "import Pkg; isdefined(Pkg, :Registry) && Pkg.Registry.update();"
|
||||
else
|
||||
echo "Registries directory does not exist or is empty. Skipping registry update"
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
# GitHub actions cache entries are immutable and cannot be updated. In order to have both the Julia
|
||||
# depot cache be up-to-date and avoid storing redundant cache entries we'll manually cleanup old
|
||||
# cache entries before the new cache is saved. However, we need to be careful with our manual
|
||||
@@ -149,7 +172,7 @@ runs:
|
||||
# - https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy
|
||||
|
||||
# Not windows
|
||||
- uses: pyTooling/Actions/with-post-step@e9d0dc3dba9fda45f195946858708f60c0240caf # v1.0.5
|
||||
- uses: pyTooling/Actions/with-post-step@9ceefdbf5dceae8c441fc393ed82344c7ca8bbdb # v3.1.1
|
||||
if: ${{ inputs.delete-old-caches != 'false' &&
|
||||
github.ref != format('refs/heads/{0}', github.event.repository.default_branch) &&
|
||||
runner.OS != 'Windows' }}
|
||||
@@ -162,7 +185,7 @@ runs:
|
||||
GH_TOKEN: ${{ inputs.token }}
|
||||
|
||||
# Windows (because this action uses command prompt on windows)
|
||||
- uses: pyTooling/Actions/with-post-step@e9d0dc3dba9fda45f195946858708f60c0240caf # v1.0.5
|
||||
- uses: pyTooling/Actions/with-post-step@9ceefdbf5dceae8c441fc393ed82344c7ca8bbdb # v3.1.1
|
||||
if: ${{ inputs.delete-old-caches != 'false' &&
|
||||
github.ref != format('refs/heads/{0}', github.event.repository.default_branch) &&
|
||||
runner.OS == 'Windows' }}
|
||||
|
||||
Reference in New Issue
Block a user