mirror of
https://github.com/julia-actions/cache.git
synced 2026-02-13 01:46:52 +08:00
Compare commits
83 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
227b3767fc | ||
|
|
9a3120aab8 | ||
|
|
43522e389d | ||
|
|
e8472695fb | ||
|
|
2061bcf01c | ||
|
|
c4f371876b | ||
|
|
38850d7b75 | ||
|
|
429bb24537 | ||
|
|
8af8844cd0 | ||
|
|
424a20aa56 | ||
|
|
5dc38e58e3 | ||
|
|
05a577a682 | ||
|
|
8205b4547a | ||
|
|
509404de2a | ||
|
|
79b42d2cc0 | ||
|
|
2d7a7cc445 | ||
|
|
46d70a0fdf | ||
|
|
5aaa1e085e | ||
|
|
2c5c26f9c8 | ||
|
|
d9e495f279 | ||
|
|
d10a6fd8f3 | ||
|
|
1f7b6e036e | ||
|
|
c1893486c9 | ||
|
|
c231b4e8c0 | ||
|
|
e5a7946b4f | ||
|
|
9b3f75eff3 | ||
|
|
2b1bf4d8a1 | ||
|
|
49fd7c4af0 | ||
|
|
d343189aad | ||
|
|
315c171d17 | ||
|
|
f4098e6050 | ||
|
|
0c8892ce7f | ||
|
|
824243901f | ||
|
|
8608484607 | ||
|
|
e662c42397 | ||
|
|
e7913c2cb9 | ||
|
|
9ec3abbd64 | ||
|
|
580d2b69d8 | ||
|
|
e00c08a89a | ||
|
|
bb4225b875 | ||
|
|
8dfc57d68c | ||
|
|
3190fc83db | ||
|
|
2185d31b12 | ||
|
|
d48542bb7b | ||
|
|
caa655642c | ||
|
|
1c20782198 | ||
|
|
4b23ab708f | ||
|
|
cc87ef305e | ||
|
|
c36389738b | ||
|
|
1b0706c0c7 | ||
|
|
8b63b4a15d | ||
|
|
0413f3b1ae | ||
|
|
e8521d4bd2 | ||
|
|
b1b004ffca | ||
|
|
216aaef29a | ||
|
|
3e0649aaee | ||
|
|
dc1a3cdeac | ||
|
|
4491ed7a86 | ||
|
|
b84ca24db8 | ||
|
|
b3b34e3264 | ||
|
|
0c5d92d73a | ||
|
|
fca1a91340 | ||
|
|
207a5a0786 | ||
|
|
fab7d6ae0a | ||
|
|
b430ec2989 | ||
|
|
930a18227b | ||
|
|
ff08d7d467 | ||
|
|
b4528cf39e | ||
|
|
67f1f75048 | ||
|
|
3466649946 | ||
|
|
b606b82bd0 | ||
|
|
8ef8d3313f | ||
|
|
5867e4d730 | ||
|
|
2d9095b561 | ||
|
|
4616a55a79 | ||
|
|
ec00ba5d20 | ||
|
|
75868c023d | ||
|
|
d006556bca | ||
|
|
adbfa18f98 | ||
|
|
ed93024b72 | ||
|
|
3ea06f8ffc | ||
|
|
569d290d51 | ||
|
|
47d045b35a |
13
.github/dependabot.yml
vendored
13
.github/dependabot.yml
vendored
@@ -1,9 +1,10 @@
|
|||||||
version: 2
|
version: 2
|
||||||
|
|
||||||
updates:
|
updates:
|
||||||
|
- package-ecosystem: "github-actions"
|
||||||
# Keep dependencies for GitHub Actions up-to-date
|
directory: "/"
|
||||||
- package-ecosystem: 'github-actions'
|
|
||||||
directory: '/'
|
|
||||||
schedule:
|
schedule:
|
||||||
interval: 'daily'
|
interval: "monthly"
|
||||||
|
open-pull-requests-limit: 99
|
||||||
|
labels:
|
||||||
|
- "dependencies"
|
||||||
|
- "github-actions"
|
||||||
|
|||||||
250
.github/workflows/CI.yml
vendored
250
.github/workflows/CI.yml
vendored
@@ -6,79 +6,275 @@ on:
|
|||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- 'action.yml'
|
- 'action.yml'
|
||||||
|
- 'handle_caches.jl'
|
||||||
- '.github/**'
|
- '.github/**'
|
||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- 'action.yml'
|
- 'action.yml'
|
||||||
|
- 'handle_caches.jl'
|
||||||
- '.github/**'
|
- '.github/**'
|
||||||
|
|
||||||
|
# needed to allow julia-actions/cache to delete old caches that it has created
|
||||||
|
permissions:
|
||||||
|
actions: write
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
generate-key:
|
generate-prefix:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
cache-name: ${{ steps.name.outputs.cache-name }}
|
cache-prefix: ${{ steps.name.outputs.cache-prefix }}
|
||||||
steps:
|
steps:
|
||||||
- name: Generate random file
|
- name: Generate random cache-prefix
|
||||||
shell: 'julia --color=yes {0}'
|
|
||||||
run: 'write("random.txt", string(rand(10)))'
|
|
||||||
- name: Set cache-name as output
|
|
||||||
id: name
|
id: name
|
||||||
run: echo "cache-name=${{ hashFiles('random.txt') }}" >> $GITHUB_OUTPUT
|
run: |
|
||||||
|
cache_prefix=$(head -n 100 </dev/urandom | shasum -a 256 | cut -d ' ' -f 1)
|
||||||
|
echo "cache-prefix=$cache_prefix" >>"$GITHUB_OUTPUT"
|
||||||
|
|
||||||
test-save:
|
test-save:
|
||||||
needs: generate-key
|
needs: generate-prefix
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
outputs:
|
||||||
|
cache-name: ${{ steps.cache-name.outputs.cache-name }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
nested:
|
||||||
|
- name: matrix
|
||||||
|
invalid-chars: "," # Use invalid characters in job matrix to ensure we escape them
|
||||||
|
version:
|
||||||
|
- "1.0"
|
||||||
|
- "1"
|
||||||
|
- "nightly"
|
||||||
|
os:
|
||||||
|
- ubuntu-latest
|
||||||
|
- windows-latest
|
||||||
|
- macOS-latest
|
||||||
|
exclude:
|
||||||
|
# Test Julia "1.0" on Linux only
|
||||||
|
- version: "1.0"
|
||||||
|
os: windows-latest
|
||||||
|
- version: "1.0"
|
||||||
|
os: macOS-latest
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
runs-on: ${{ matrix.os }}
|
env:
|
||||||
|
JULIA_DEPOT_PATH: /tmp/julia-depot
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
|
- name: Set cache-name
|
||||||
|
id: cache-name
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "cache-name=${{ needs.generate-prefix.outputs.cache-prefix }}-${{ github.job }}" >>"$GITHUB_OUTPUT"
|
||||||
|
- uses: julia-actions/setup-julia@v2
|
||||||
|
with:
|
||||||
|
version: ${{ matrix.version }}
|
||||||
- name: Save cache
|
- name: Save cache
|
||||||
id: cache
|
id: cache
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
cache-name: ${{ needs.generate-key.outputs.cache-name }}
|
cache-name: ${{ steps.cache-name.outputs.cache-name }}
|
||||||
|
delete-old-caches: required
|
||||||
- name: Check no artifacts dir
|
- name: Check no artifacts dir
|
||||||
shell: 'julia --color=yes {0}'
|
shell: julia --color=yes {0}
|
||||||
run: |
|
run: |
|
||||||
dir = joinpath(first(DEPOT_PATH), "artifacts")
|
dir = joinpath(first(DEPOT_PATH), "artifacts")
|
||||||
@assert !isdir(dir)
|
@assert !isdir(dir)
|
||||||
- name: Install a small binary
|
- name: Install a small binary
|
||||||
shell: 'julia --color=yes {0}'
|
shell: julia --color=yes {0}
|
||||||
run: 'using Pkg; Pkg.add("pandoc_jll")'
|
run: |
|
||||||
|
using Pkg
|
||||||
|
if VERSION >= v"1.3"
|
||||||
|
Pkg.add(PackageSpec(name="pandoc_jll", version="3"))
|
||||||
|
else
|
||||||
|
Pkg.add(PackageSpec(name="Scratch", version="1"))
|
||||||
|
using Scratch
|
||||||
|
get_scratch!("test")
|
||||||
|
end
|
||||||
|
|
||||||
test-restore:
|
test-restore:
|
||||||
needs: [generate-key, test-save]
|
needs: test-save
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
nested:
|
||||||
|
- name: matrix
|
||||||
|
invalid-chars: "," # Use invalid characters in job matrix to ensure we escape them
|
||||||
|
version:
|
||||||
|
- "1.0"
|
||||||
|
- "1"
|
||||||
|
- "nightly"
|
||||||
|
os:
|
||||||
|
- ubuntu-latest
|
||||||
|
- windows-latest
|
||||||
|
- macOS-latest
|
||||||
|
exclude:
|
||||||
|
# Test Julia "1.0" on Linux only
|
||||||
|
- version: "1.0"
|
||||||
|
os: windows-latest
|
||||||
|
- version: "1.0"
|
||||||
|
os: macOS-latest
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
runs-on: ${{ matrix.os }}
|
env:
|
||||||
|
JULIA_DEPOT_PATH: /tmp/julia-depot
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
|
- uses: julia-actions/setup-julia@v2
|
||||||
|
with:
|
||||||
|
version: ${{ matrix.version }}
|
||||||
- name: Restore cache
|
- name: Restore cache
|
||||||
id: cache
|
id: cache
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
cache-name: ${{ needs.generate-key.outputs.cache-name }}
|
cache-name: ${{ needs.test-save.outputs.cache-name }}
|
||||||
|
# Cannot require a successful cache delete on forked PRs as the permissions for actions is limited to read
|
||||||
|
delete-old-caches: ${{ github.event.pull_request.head.repo.fork && 'false' || 'required' }}
|
||||||
- name: Test cache-hit output
|
- name: Test cache-hit output
|
||||||
shell: 'julia --color=yes {0}'
|
shell: julia --color=yes {0}
|
||||||
run: |
|
run: |
|
||||||
@show ENV["cache-hit"]
|
@show ENV["cache-hit"]
|
||||||
@assert ENV["cache-hit"] == "true"
|
@assert ENV["cache-hit"] == "true"
|
||||||
env:
|
env:
|
||||||
cache-hit: ${{ steps.cache.outputs.cache-hit }}
|
cache-hit: ${{ steps.cache.outputs.cache-hit }}
|
||||||
- name: Check existance or emptiness of affected dirs
|
- name: Check existance or emptiness of affected dirs
|
||||||
shell: 'julia --color=yes {0}'
|
shell: julia --color=yes {0}
|
||||||
run: |
|
run: |
|
||||||
# Artifacts and Packages should exist as they've been cached
|
# These dirs should exist as they've been cached
|
||||||
artifacts_dir = joinpath(first(DEPOT_PATH), "artifacts")
|
artifacts_dir = joinpath(first(DEPOT_PATH), "artifacts")
|
||||||
@assert !isempty(readdir(artifacts_dir))
|
if VERSION >= v"1.3"
|
||||||
|
@assert !isempty(readdir(artifacts_dir))
|
||||||
|
else
|
||||||
|
@assert !isdir(artifacts_dir)
|
||||||
|
end
|
||||||
packages_dir = joinpath(first(DEPOT_PATH), "packages")
|
packages_dir = joinpath(first(DEPOT_PATH), "packages")
|
||||||
@assert !isempty(readdir(packages_dir))
|
@assert !isempty(readdir(packages_dir))
|
||||||
|
|
||||||
# Caching the compiled dir is disabled by default and should not exist after restoring a cache
|
|
||||||
compiled_dir = joinpath(first(DEPOT_PATH), "compiled")
|
compiled_dir = joinpath(first(DEPOT_PATH), "compiled")
|
||||||
@assert !isdir(compiled_dir) || isempty(readdir(compiled_dir))
|
@assert !isempty(readdir(compiled_dir))
|
||||||
|
scratchspaces_dir = joinpath(first(DEPOT_PATH), "scratchspaces")
|
||||||
|
@assert !isempty(readdir(scratchspaces_dir))
|
||||||
|
logs_dir = joinpath(first(DEPOT_PATH), "logs")
|
||||||
|
@assert !isempty(readdir(logs_dir))
|
||||||
|
|
||||||
|
# Do tests with no matrix also given the matrix is auto-included in cache key
|
||||||
|
test-save-nomatrix:
|
||||||
|
needs: generate-prefix
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
cache-name: ${{ steps.cache-name.outputs.cache-name }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
|
- name: Set cache-name
|
||||||
|
id: cache-name
|
||||||
|
run: |
|
||||||
|
echo "cache-name=${{ needs.generate-prefix.outputs.cache-prefix }}-${{ github.job }}" >>"$GITHUB_OUTPUT"
|
||||||
|
- name: Save cache
|
||||||
|
id: cache
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
cache-name: ${{ steps.cache-name.outputs.cache-name }}
|
||||||
|
delete-old-caches: required
|
||||||
|
- name: Check no artifacts dir
|
||||||
|
shell: julia --color=yes {0}
|
||||||
|
run: |
|
||||||
|
dir = joinpath(first(DEPOT_PATH), "artifacts")
|
||||||
|
@assert !isdir(dir)
|
||||||
|
- name: Install a small binary
|
||||||
|
shell: julia --color=yes {0}
|
||||||
|
run: |
|
||||||
|
using Pkg
|
||||||
|
if VERSION >= v"1.3"
|
||||||
|
Pkg.add(PackageSpec(name="pandoc_jll", version="3"))
|
||||||
|
else
|
||||||
|
Pkg.add(PackageSpec(name="Scratch", version="1"))
|
||||||
|
using Scratch
|
||||||
|
get_scratch!("test")
|
||||||
|
end
|
||||||
|
|
||||||
|
test-restore-nomatrix:
|
||||||
|
needs: test-save-nomatrix
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
|
- name: Restore cache
|
||||||
|
id: cache
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
cache-name: ${{ needs.test-save-nomatrix.outputs.cache-name }}
|
||||||
|
# Cannot require a successful cache delete on forked PRs as the permissions for actions is limited to read
|
||||||
|
delete-old-caches: ${{ github.event.pull_request.head.repo.fork && 'false' || 'required' }}
|
||||||
|
- name: Test cache-hit output
|
||||||
|
shell: julia --color=yes {0}
|
||||||
|
run: |
|
||||||
|
@show ENV["cache-hit"]
|
||||||
|
@assert ENV["cache-hit"] == "true"
|
||||||
|
env:
|
||||||
|
cache-hit: ${{ steps.cache.outputs.cache-hit }}
|
||||||
|
- name: Check existance or emptiness of affected dirs
|
||||||
|
shell: julia --color=yes {0}
|
||||||
|
run: |
|
||||||
|
# These dirs should exist as they've been cached
|
||||||
|
artifacts_dir = joinpath(first(DEPOT_PATH), "artifacts")
|
||||||
|
if VERSION >= v"1.3"
|
||||||
|
@assert !isempty(readdir(artifacts_dir))
|
||||||
|
else
|
||||||
|
@assert !isdir(artifacts_dir)
|
||||||
|
end
|
||||||
|
packages_dir = joinpath(first(DEPOT_PATH), "packages")
|
||||||
|
@assert !isempty(readdir(packages_dir))
|
||||||
|
compiled_dir = joinpath(first(DEPOT_PATH), "compiled")
|
||||||
|
@assert !isempty(readdir(compiled_dir))
|
||||||
|
scratchspaces_dir = joinpath(first(DEPOT_PATH), "scratchspaces")
|
||||||
|
@assert !isempty(readdir(scratchspaces_dir))
|
||||||
|
logs_dir = joinpath(first(DEPOT_PATH), "logs")
|
||||||
|
@assert !isempty(readdir(logs_dir))
|
||||||
|
|
||||||
|
test-save-cloned-registry:
|
||||||
|
needs: generate-prefix
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
cache-name: ${{ steps.cache-name.outputs.cache-name }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
|
- name: Set cache-name
|
||||||
|
id: cache-name
|
||||||
|
run: |
|
||||||
|
echo "cache-name=${{ needs.generate-prefix.outputs.cache-prefix }}-${{ github.job }}" >>"$GITHUB_OUTPUT"
|
||||||
|
- name: Save cache
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
cache-name: ${{ steps.cache-name.outputs.cache-name }}
|
||||||
|
# Cannot require a successful cache delete on forked PRs as the permissions for actions is limited to read
|
||||||
|
delete-old-caches: ${{ github.event.pull_request.head.repo.fork && 'false' || 'required' }}
|
||||||
|
- name: Add General registry clone
|
||||||
|
shell: julia --color=yes {0}
|
||||||
|
run: |
|
||||||
|
using Pkg
|
||||||
|
Pkg.Registry.add("General")
|
||||||
|
env:
|
||||||
|
JULIA_PKG_SERVER: ""
|
||||||
|
# Set the registry worktree to an older state to simulate the cache storing an old version of the registry.
|
||||||
|
- name: Use outdated General worktree
|
||||||
|
run: git -C ~/.julia/registries/General reset --hard HEAD~20
|
||||||
|
|
||||||
|
test-restore-cloned-registry:
|
||||||
|
needs: test-save-cloned-registry
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
|
- name: Add General registry clone
|
||||||
|
shell: julia --color=yes {0}
|
||||||
|
run: |
|
||||||
|
using Pkg
|
||||||
|
Pkg.Registry.add("General")
|
||||||
|
env:
|
||||||
|
JULIA_PKG_SERVER: ""
|
||||||
|
- name: Restore cache
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
cache-name: ${{ needs.test-save-cloned-registry.outputs.cache-name }}
|
||||||
|
# Cannot require a successful cache delete on forked PRs as the permissions for actions is limited to read
|
||||||
|
delete-old-caches: ${{ github.event.pull_request.head.repo.fork && 'false' || 'required' }}
|
||||||
|
- name: Test registry is not corrupt
|
||||||
|
shell: julia --color=yes {0}
|
||||||
|
run: |
|
||||||
|
using Pkg
|
||||||
|
Pkg.Registry.update()
|
||||||
|
|||||||
132
README.md
132
README.md
@@ -1,6 +1,6 @@
|
|||||||
# julia-actions/cache Action
|
# julia-actions/cache Action
|
||||||
|
|
||||||
A shortcut action to cache Julia artifacts, packages and (optionally) registries to reduce GitHub Actions running time.
|
A shortcut action to cache Julia depot contents to reduce GitHub Actions running time.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@@ -11,47 +11,135 @@ name: CI
|
|||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
# needed to allow julia-actions/cache to delete old caches that it has created
|
||||||
|
permissions:
|
||||||
|
actions: write
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v6
|
||||||
- uses: julia-actions/setup-julia@v1
|
- uses: julia-actions/setup-julia@v2
|
||||||
- uses: julia-actions/cache@v1
|
- uses: julia-actions/cache@v2
|
||||||
- uses: julia-actions/julia-buildpkg@v1
|
- uses: julia-actions/julia-buildpkg@v1
|
||||||
- uses: julia-actions/julia-runtest@v1
|
- uses: julia-actions/julia-runtest@v1
|
||||||
```
|
```
|
||||||
|
|
||||||
By default, this caches the files in `~/.julia/artifacts/` and `~/.julia/packages/`.
|
By default all depot directories called out below are cached.
|
||||||
To also cache `~/.julia/registries/`, use
|
|
||||||
|
|
||||||
```yaml
|
### Requirements
|
||||||
- uses: julia-actions/cache@v1
|
|
||||||
with:
|
|
||||||
cache-registries: "true"
|
|
||||||
```
|
|
||||||
|
|
||||||
Note that caching the registries may actually slow down the workflow running time on Windows runners.
|
- `jq`: This action uses [`jq`](https://github.com/jqlang/jq) to parse JSON. For GitHub-hosted runners, `jq` is installed by default. On self-hosted runners and custom containers, if `jq` is not already available, this action will automatically use [`dcarbone/install-jq-action`](https://github.com/dcarbone/install-jq-action) to install `jq` (Note: `dcarbone/install-jq-action` requires that `curl` is installed; this may not always be the case in custom containers and self-hosted runners).
|
||||||
That is why caching the registries is disabled by default.
|
- `bash`: This action requires `bash`. For GitHub-hosted runners `bash` is installed by default. Self-hosted runners will need to ensure that `bash` is installed and available on the `PATH`.
|
||||||
|
|
||||||
### Inputs
|
### Optional Inputs
|
||||||
|
|
||||||
- `cache-name` - Name used as part of the cache keys
|
- `cache-name` - The cache key prefix. Defaults to `julia-cache;workflow=${{ github.workflow }};job=${{ github.job }}`. The key body automatically includes the OS and, unless disabled with `include-matrix`, the matrix vars. Include any other parameters/details in this prefix to ensure one unique cache key per concurrent job type.
|
||||||
- `cache-artifacts` - Whether to cache `~/.julia/artifacts/`. Enabled by default.
|
- `include-matrix` - Whether to include the matrix values when constructing the cache key. Defaults to `true`.
|
||||||
- `cache-packages` - Whether to cache `~/.julia/packages/`. Enabled by default.
|
- `depot` - Path to a Julia [depot](https://pkgdocs.julialang.org/v1/glossary/) directory where cached data will be saved to and restored from. Defaults to the first depot in [`JULIA_DEPOT_PATH`](https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_DEPOT_PATH) if specified. Otherwise, defaults to `~/.julia`.
|
||||||
- `cache-registries` - Whether to cache `~/.julia/registries/`. Disabled by default.
|
- `cache-artifacts` - Whether to cache the depot's `artifacts` directory. Defaults to `true`.
|
||||||
- `cache-compiled` - Whether to cache `~/.julia/compiled/`. Disabled by default. **USE ONLY IF YOU KNOW WHAT YOU'RE DOING!** See [#11](https://github.com/julia-actions/cache/issues/11).
|
- `cache-packages` - Whether to cache the depot's `packages` directory. Defaults to `true`.
|
||||||
|
- `cache-registries` - Whether to cache the depot's `registries` directory. Defaults to `true`.
|
||||||
|
- `cache-compiled` - Whether to cache the depot's `compiled` directory. Defaults to `true`.
|
||||||
|
- `cache-scratchspaces` - Whether to cache the depot's `scratchspaces` directory. Defaults to `true`.
|
||||||
|
- `cache-logs` - Whether to cache the depot's `logs` directory. Defaults to `true`. Helps auto-`Pkg.gc()` keep the cache small.
|
||||||
|
- `delete-old-caches` - Whether to delete old caches for the given key. Defaults to `true`.
|
||||||
|
- `token` - A [GitHub PAT](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/managing-your-personal-access-tokens). Defaults to `github.token`. Requires `repo` scope to enable the deletion of old caches.
|
||||||
|
|
||||||
### Outputs
|
### Outputs
|
||||||
|
|
||||||
- `cache-hit` - A boolean value to indicate an exact match was found for the primary key. Returns \"\" when the key is new. Forwarded from actions/cache.
|
- `cache-hit` - A boolean value to indicate an exact match was found for the primary key. Returns \"\" when the key is new. Forwarded from actions/cache.
|
||||||
|
- `cache-paths` - A list of paths (as a newline-separated string) that were cached.
|
||||||
|
- `cache-key` - The cache key that was used for this run.
|
||||||
|
|
||||||
## How it works
|
## How It Works
|
||||||
|
|
||||||
This action is a wrapper around <https://github.com/actions/cache>.
|
This action is a wrapper around <https://github.com/actions/cache>.
|
||||||
In summary, this action stores the files in the aforementioned paths in one compressed file when running for the first time.
|
In summary, this action stores the files in the aforementioned paths in one compressed file when running for the first time.
|
||||||
This cached file is then restored upon the second run.
|
This cached file is then restored upon the second run, and afterwards resaved under a new key, and the previous cache deleted.
|
||||||
The benefit of this is that downloading one big file is quicker than downloading many different files from many different locations.
|
The benefit of caching is that downloading one big file is quicker than downloading many different files from many different locations
|
||||||
|
and precompiling them.
|
||||||
|
|
||||||
|
By default, this action removes caches that were previously made by jobs on the same branch with the same restore key.
|
||||||
|
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.
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
The cache key that the cache will be saved as is based on:
|
||||||
|
- The `cache-name` input
|
||||||
|
- All variables in the `matrix` (unless disabled via `include-matrix: 'false'`)
|
||||||
|
- The `runner.os` (may be in the matrix too, but included for safety)
|
||||||
|
- The run id
|
||||||
|
- The run attempt number
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> If there is job concurrency that is not fully defined by a matrix you should ensure that `cache-name` is
|
||||||
|
> unique for each concurrent job, otherwise caching may not be effective.
|
||||||
|
|
||||||
|
### Cache Retention
|
||||||
|
|
||||||
|
This action automatically deletes old caches that match the first 4 fields of the above key:
|
||||||
|
- The `cache-name` input
|
||||||
|
- All variables in the `matrix` (unless disabled via `include-matrix: 'false'`)
|
||||||
|
- The `runner.os` (may be in the matrix too, but included for safety)
|
||||||
|
|
||||||
|
Which means your caches files will not grow needlessly. GitHub also deletes cache files after
|
||||||
|
[7 days of not being accessed](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy), and there is a limit of 10 GB for the total size of cache files associated to each repository.
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> To allow deletion of caches you will likely need to [grant the following permissions](https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs)
|
||||||
|
> to the `GITHUB_TOKEN` by adding this to your GitHub actions workflow:
|
||||||
|
> ```yaml
|
||||||
|
> permissions:
|
||||||
|
> actions: write
|
||||||
|
> contents: read
|
||||||
|
> ```
|
||||||
|
> (Note this won't work for fork PRs but should once merged)
|
||||||
|
> Or provide a token with `repo` scope via the `token` input option.
|
||||||
|
> See https://cli.github.com/manual/gh_cache_delete
|
||||||
|
|
||||||
|
To disable deletion set input `delete-old-caches: 'false'`.
|
||||||
|
|
||||||
|
### Caching even if an intermediate job fails
|
||||||
|
|
||||||
|
Just like [the basic actions/cache workflow](https://github.com/actions/cache), this action has a cache restore step, and also a save step which runs after the workflow completes.
|
||||||
|
By default, if any job in the workflow fails, the entire workflow will be stopped, and the cache will not be saved.
|
||||||
|
|
||||||
|
Due to current limitations in GitHub Actions syntax, there is no built-in option for this action to save the cache even if the job fails.
|
||||||
|
However, it does output information which you can feed into `actions/cache` yourself to achieve the same effect.
|
||||||
|
For example, this workflow will ensure that the cache is saved if a step fails (but skipping it if the cache was hit, i.e. there's no need to cache it again).
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Load Julia packages from cache
|
||||||
|
id: julia-cache
|
||||||
|
uses: julia-actions/cache@v2
|
||||||
|
|
||||||
|
# do whatever you want here (that might fail)
|
||||||
|
|
||||||
|
- name: Save Julia depot cache on cancel or failure
|
||||||
|
id: julia-cache-save
|
||||||
|
if: cancelled() || failure()
|
||||||
|
uses: actions/cache/save@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
${{ steps.julia-cache.outputs.cache-paths }}
|
||||||
|
key: ${{ steps.julia-cache.outputs.cache-key }}
|
||||||
|
```
|
||||||
|
|
||||||
|
### Cache Garbage Collection
|
||||||
|
|
||||||
|
Caches are restored and re-saved after every run, retaining the state of the depot throughout runs.
|
||||||
|
Their size will be regulated like a local depot automatically by the automatic `Pkg.gc()` functionality that
|
||||||
|
clears out old content, which is made possible because the `/log` contents are cached.
|
||||||
|
|
||||||
## Third Party Notice
|
## Third Party Notice
|
||||||
|
|
||||||
|
|||||||
196
action.yml
196
action.yml
@@ -8,48 +8,198 @@ branding:
|
|||||||
|
|
||||||
inputs:
|
inputs:
|
||||||
cache-name:
|
cache-name:
|
||||||
description: 'Name used as part of the cache keys'
|
description: >-
|
||||||
default: 'julia-cache'
|
The cache key prefix. The key body automatically includes the OS and, unless disabled, the matrix vars.
|
||||||
|
Include any other parameters/details in this prefix to ensure one unique cache key per concurrent job type.
|
||||||
|
default: julia-cache;workflow=${{ github.workflow }};job=${{ github.job }}
|
||||||
|
include-matrix:
|
||||||
|
description: Whether to include the matrix values when constructing the cache key.
|
||||||
|
default: 'true'
|
||||||
|
depot:
|
||||||
|
description: Path to a Julia depot directory where cached data will be saved to and restored from.
|
||||||
|
default: ''
|
||||||
cache-artifacts:
|
cache-artifacts:
|
||||||
description: 'Whether to cache ~/.julia/artifacts/'
|
description: Whether to cache the depot's `artifacts` directory.
|
||||||
default: 'true'
|
default: 'true'
|
||||||
cache-packages:
|
cache-packages:
|
||||||
description: 'Whether to cache ~/.julia/packages/'
|
description: Whether to cache the depot's `packages` directory.
|
||||||
default: 'true'
|
default: 'true'
|
||||||
cache-registries:
|
cache-registries:
|
||||||
description: 'Whether to cache ~/.julia/registries/'
|
description: Whether to cache the depot's `registries` directory.
|
||||||
default: 'false'
|
default: 'true'
|
||||||
cache-compiled:
|
cache-compiled:
|
||||||
description: 'Whether to cache ~/.julia/compiled. USE WITH CAUTION! See https://github.com/julia-actions/cache/issues/11 for caveats.'
|
description: Whether to cache the depot's `compiled` directory.
|
||||||
default: 'false'
|
default: 'true'
|
||||||
|
cache-scratchspaces:
|
||||||
|
description: Whether to cache the depot's `scratchspaces` directory.
|
||||||
|
default: 'true'
|
||||||
|
cache-logs:
|
||||||
|
description: Whether to cache the depot's `logs` directory. This helps automatic `Pkg.gc()` keep the cache size down.
|
||||||
|
default: 'true'
|
||||||
|
delete-old-caches:
|
||||||
|
description: Whether to delete old caches for the given key.
|
||||||
|
default: 'true'
|
||||||
|
token:
|
||||||
|
description: A GitHub PAT. Requires `repo` scope to enable the deletion of old caches.
|
||||||
|
default: ${{ github.token }}
|
||||||
|
|
||||||
outputs:
|
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
|
||||||
|
uses: dcarbone/install-jq-action@b7ef57d46ece78760b4019dbc4080a1ba2a40b45 # v3.2.0
|
||||||
|
with:
|
||||||
|
force: false # Skip install when an existing `jq` is present
|
||||||
|
|
||||||
- id: paths
|
- id: paths
|
||||||
run: |
|
run: |
|
||||||
[ "${{ inputs.cache-artifacts }}" = "true" ] && A_PATH="~/.julia/artifacts"
|
if [ -n "${{ inputs.depot }}" ]; then
|
||||||
echo "ARTIFACTS_PATH=$A_PATH" >> $GITHUB_ENV
|
depot="${{ inputs.depot }}"
|
||||||
[ "${{ inputs.cache-packages }}" = "true" ] && P_PATH="~/.julia/packages"
|
elif [ -n "$JULIA_DEPOT_PATH" ]; then
|
||||||
echo "PACKAGES_PATH=$P_PATH" >> $GITHUB_ENV
|
# Use the first depot path
|
||||||
[ "${{ inputs.cache-registries }}" = "true" ] && R_PATH="~/.julia/registries"
|
depot=$(echo $JULIA_DEPOT_PATH | cut -d$PATH_DELIMITER -f1)
|
||||||
echo "REGISTRIES_PATH=$R_PATH" >> $GITHUB_ENV
|
else
|
||||||
[ "${{ inputs.cache-compiled }}" = "true" ] && PCC_PATH="~/.julia/compiled"
|
depot="~/.julia"
|
||||||
echo "PRECOMPILATION_CACHE_PATH=$PCC_PATH" >> $GITHUB_ENV
|
fi
|
||||||
shell: bash
|
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"
|
||||||
|
|
||||||
- uses: actions/cache@69d9d449aced6a2ede0bc19182fadc3a0a42d2b0
|
cache_paths=()
|
||||||
|
artifacts_path="${depot}/artifacts"
|
||||||
|
[ "${{ inputs.cache-artifacts }}" = "true" ] && cache_paths+=("$artifacts_path")
|
||||||
|
packages_path="${depot}/packages"
|
||||||
|
[ "${{ inputs.cache-packages }}" = "true" ] && cache_paths+=("$packages_path")
|
||||||
|
registries_path="${depot}/registries"
|
||||||
|
if [ "${{ inputs.cache-registries }}" = "true" ]; 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."
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
compiled_path="${depot}/compiled"
|
||||||
|
[ "${{ inputs.cache-compiled }}" = "true" ] && cache_paths+=("$compiled_path")
|
||||||
|
scratchspaces_path="${depot}/scratchspaces"
|
||||||
|
[ "${{ inputs.cache-scratchspaces }}" = "true" ] && cache_paths+=("$scratchspaces_path")
|
||||||
|
logs_path="${depot}/logs"
|
||||||
|
[ "${{ inputs.cache-logs }}" = "true" ] && cache_paths+=("$logs_path")
|
||||||
|
{
|
||||||
|
echo "cache-paths<<EOF"
|
||||||
|
printf "%s\n" "${cache_paths[@]}"
|
||||||
|
echo "EOF"
|
||||||
|
} | tee -a "$GITHUB_OUTPUT"
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
PATH_DELIMITER: ${{ runner.OS == 'Windows' && ';' || ':' }}
|
||||||
|
|
||||||
|
- name: Generate Keys
|
||||||
|
id: keys
|
||||||
|
run: |
|
||||||
|
# `matrix_key` joins all of matrix keys/values (including nested objects) to ensure that concurrent runs each use a unique cache key.
|
||||||
|
# When `matrix` isn't set for the job then `MATRIX_JSON=null`.
|
||||||
|
if [ "${{ inputs.include-matrix }}" == "true" ] && [ "$MATRIX_JSON" != "null" ]; then
|
||||||
|
matrix_key=$(echo "$MATRIX_JSON" | jq 'paths(type != "object") as $p | ($p | join("-")) + "=" + (getpath($p) | tostring)' | jq -rs 'join(";") | . + ";"')
|
||||||
|
fi
|
||||||
|
restore_key="${{ inputs.cache-name }};os=${{ runner.os }};${matrix_key}"
|
||||||
|
# URL encode any restricted characters:
|
||||||
|
# https://github.com/actions/toolkit/blob/5430c5d84832076372990c7c27f900878ff66dc9/packages/cache/src/cache.ts#L38-L43
|
||||||
|
restore_key=$(sed 's/,/%2C/g' <<<"${restore_key}")
|
||||||
|
key="${restore_key}run_id=${{ github.run_id }};run_attempt=${{ github.run_attempt }}"
|
||||||
|
echo "restore-key=${restore_key}" >> $GITHUB_OUTPUT
|
||||||
|
echo "key=${key}" >> $GITHUB_OUTPUT
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
MATRIX_JSON: ${{ toJSON(matrix) }}
|
||||||
|
|
||||||
|
- uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
|
||||||
id: cache
|
id: cache
|
||||||
with:
|
with:
|
||||||
path: "${{ format('{0}\n{1}\n{2}\n{3}', env.ARTIFACTS_PATH, env.PACKAGES_PATH, env.REGISTRIES_PATH, env.PRECOMPILATION_CACHE_PATH) }}"
|
path: |
|
||||||
key: ${{ runner.os }}-test-${{ inputs.cache-name }}-${{ hashFiles('**/Project.toml') }}
|
${{ steps.paths.outputs.cache-paths }}
|
||||||
restore-keys: |
|
key: ${{ steps.keys.outputs.key }}
|
||||||
${{ runner.os }}-test-${{ inputs.cache-name }}-
|
restore-keys: ${{ steps.keys.outputs.restore-key }}
|
||||||
|
enableCrossOsArchive: false
|
||||||
|
|
||||||
|
# if it wasn't restored make the depot anyway as a signal that this action ran
|
||||||
|
# for other julia actions to check, like https://github.com/julia-actions/julia-buildpkg/pull/41
|
||||||
|
- name: make depot if not restored, then list depot directory sizes
|
||||||
|
run: |
|
||||||
|
mkdir -p ${{ steps.paths.outputs.depot }}
|
||||||
|
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
|
||||||
|
# cleanup as otherwise we can cause cache misses for jobs which would have normally had a cache hit.
|
||||||
|
# Some scenarios to keep in mind include:
|
||||||
|
#
|
||||||
|
# - Job failures result in the post-action for `actions/cache` being skipped. If we delete all cache
|
||||||
|
# entries for the branch we may have no cache entry available for the next run.
|
||||||
|
# - We should avoid deleting old cache entries for the default branch since these entries serve as
|
||||||
|
# the fallback if no earlier cache entry exists on a branch. We can rely on GitHub's default cache
|
||||||
|
# eviction policy here which will remove the oldest cache entry first.
|
||||||
|
#
|
||||||
|
# References:
|
||||||
|
# - https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
|
||||||
|
# - 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@370c306306304663febee1525552a09e061588fa # v7.4.2
|
||||||
|
if: ${{ inputs.delete-old-caches != 'false' &&
|
||||||
|
github.ref != format('refs/heads/{0}', github.event.repository.default_branch) &&
|
||||||
|
runner.OS != 'Windows' }}
|
||||||
|
with:
|
||||||
|
# seems like there has to be a `main` step in this action. Could list caches for info if we wanted
|
||||||
|
# main: julia ${{ github.action_path }}/handle_caches.jl "${{ github.repository }}" "list"
|
||||||
|
main: echo ""
|
||||||
|
post: julia $GITHUB_ACTION_PATH/handle_caches.jl rm "${{ github.repository }}" "${{ steps.keys.outputs.restore-key }}" "${{ github.ref }}" "${{ inputs.delete-old-caches != 'required' }}"
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ inputs.token }}
|
||||||
|
|
||||||
|
# Windows (because this action uses command prompt on windows)
|
||||||
|
- uses: pyTooling/Actions/with-post-step@370c306306304663febee1525552a09e061588fa # v7.4.2
|
||||||
|
if: ${{ inputs.delete-old-caches != 'false' &&
|
||||||
|
github.ref != format('refs/heads/{0}', github.event.repository.default_branch) &&
|
||||||
|
runner.OS == 'Windows' }}
|
||||||
|
with:
|
||||||
|
main: echo ""
|
||||||
|
post: cd %GITHUB_ACTION_PATH% && julia handle_caches.jl rm "${{ github.repository }}" "${{ steps.keys.outputs.restore-key }}" "${{ github.ref }}" "${{ inputs.delete-old-caches != 'required' }}"
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ inputs.token }}
|
||||||
|
|
||||||
- id: hit
|
- id: hit
|
||||||
run: echo "cache-hit=$CACHE_HIT" >> $GITHUB_OUTPUT
|
run: echo "cache-hit=$CACHE_HIT" >> $GITHUB_OUTPUT
|
||||||
|
|||||||
56
devdocs/making_a_new_release.md
Normal file
56
devdocs/making_a_new_release.md
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
# Making a new release
|
||||||
|
|
||||||
|
In this guide, as an example, `v2.2.0` refers to the version number of the new release that you want to make.
|
||||||
|
|
||||||
|
## Part 1: Use the Git CLI to create and push the Git tags
|
||||||
|
|
||||||
|
Step 1: Create a new lightweight tag of the form `vMAJOR.MINOR.PATCH`.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone git@github.com:julia-actions/cache.git
|
||||||
|
cd cache
|
||||||
|
git fetch --all --tags
|
||||||
|
|
||||||
|
git checkout main
|
||||||
|
|
||||||
|
git --no-pager log -1
|
||||||
|
# Take note of the commit hash here.
|
||||||
|
|
||||||
|
# Now, create a new lightweight tag of the form `vMAJOR.MINOR.PATCH`.
|
||||||
|
#
|
||||||
|
# Replace `commit_hash` with the commit hash that you obtained from the
|
||||||
|
# `git log -1` step.
|
||||||
|
#
|
||||||
|
# Replace `v2.2.0` with the actual version number that you want to use.
|
||||||
|
git tag v2.2.0 commit_hash
|
||||||
|
```
|
||||||
|
|
||||||
|
Step 2: Once you've created the new release, you need to update the `v2` tag to point to the new release. For example, suppose that the previous release was `v2.1.0`, and suppose that you just created the new release `v2.2.0`. You need to update the `v2` tag so that it points to `v2.2.0`. Here are the commands:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Create/update the new v2 tag locally, where the new v2 tag will point to the
|
||||||
|
# release that you created in the previous step.
|
||||||
|
#
|
||||||
|
# Make sure to change `v2.2.0` to the actual value for the tag that you just
|
||||||
|
# created in the previous step.
|
||||||
|
#
|
||||||
|
# The `-f` flag forcibly overwrites the old
|
||||||
|
# `v2` tag (if it exists).
|
||||||
|
git tag -f v2 v2.2.0
|
||||||
|
```
|
||||||
|
|
||||||
|
Step 3: Now you need to push the tags:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Regular-push the new `v2.2.0` tag:
|
||||||
|
git push origin tag v2.2.0
|
||||||
|
|
||||||
|
# Force-push the new v2 tag:
|
||||||
|
git push origin tag v2 --force
|
||||||
|
```
|
||||||
|
|
||||||
|
## Part 2: Create the GitHub Release
|
||||||
|
|
||||||
|
Go to the [Releases](https://github.com/julia-actions/cache/releases) section of this repo and create a new release (using the GitHub web interface).
|
||||||
|
|
||||||
|
For the "choose a tag" drop-down field, select the `v2.2.0` tag that you created and pushed in Part 1 of this guide.
|
||||||
85
handle_caches.jl
Normal file
85
handle_caches.jl
Normal file
@@ -0,0 +1,85 @@
|
|||||||
|
using Pkg, Dates
|
||||||
|
function handle_caches()
|
||||||
|
subcommand = ARGS[1]
|
||||||
|
|
||||||
|
if subcommand == "list"
|
||||||
|
repo = ARGS[2]
|
||||||
|
println("Listing existing caches")
|
||||||
|
run(`gh cache list --limit 100 --repo $repo`)
|
||||||
|
elseif subcommand == "rm"
|
||||||
|
repo, restore_key, ref = ARGS[2:4]
|
||||||
|
allow_failure = ARGS[5] == "true"
|
||||||
|
|
||||||
|
page = 1
|
||||||
|
per_page = 100
|
||||||
|
skipped = String[]
|
||||||
|
deleted = String[]
|
||||||
|
failed = String[]
|
||||||
|
while 1 <= page <= 5 # limit to avoid accidental rate limiting
|
||||||
|
# https://docs.github.com/en/rest/actions/cache?apiVersion=2022-11-28#list-github-actions-caches-for-a-repository
|
||||||
|
# Note: The `key` field matches on the full key or a prefix.
|
||||||
|
cmd = ```
|
||||||
|
gh api -X GET /repos/$repo/actions/caches
|
||||||
|
--field per_page=$per_page
|
||||||
|
--field page=$page
|
||||||
|
--field ref=$ref
|
||||||
|
--field key=$restore_key
|
||||||
|
--field sort=last_accessed_at
|
||||||
|
--field direction=desc
|
||||||
|
--jq '.actions_caches[].id'
|
||||||
|
```
|
||||||
|
ids = split(read(cmd, String); keepempty=false)
|
||||||
|
|
||||||
|
# Avoid deleting the latest used cache entry. This is particularly important for
|
||||||
|
# job failures where a new cache entry will not be saved after this.
|
||||||
|
page == 1 && !isempty(ids) && push!(skipped, popfirst!(ids))
|
||||||
|
|
||||||
|
for id in ids
|
||||||
|
try
|
||||||
|
run(`gh cache delete $id --repo $repo`)
|
||||||
|
push!(deleted, id)
|
||||||
|
catch e
|
||||||
|
@error e
|
||||||
|
push!(failed, id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
page = length(ids) == per_page ? page + 1 : -1
|
||||||
|
end
|
||||||
|
if isempty(skipped) && isempty(deleted) && isempty(failed)
|
||||||
|
println("No existing caches found on ref `$ref` matching restore key `$restore_key`")
|
||||||
|
else
|
||||||
|
if !isempty(failed)
|
||||||
|
println("Failed to delete $(length(failed)) existing caches on ref `$ref` matching restore key `$restore_key`")
|
||||||
|
println.(failed)
|
||||||
|
@info """
|
||||||
|
To delete caches you need to grant the following to the default `GITHUB_TOKEN` by adding
|
||||||
|
this to your workflow:
|
||||||
|
```
|
||||||
|
permissions:
|
||||||
|
actions: write
|
||||||
|
contents: read
|
||||||
|
```
|
||||||
|
(Note this won't work for fork PRs but should once merged)
|
||||||
|
Or provide a token with `repo` scope via the `token` input option.
|
||||||
|
See https://cli.github.com/manual/gh_cache_delete
|
||||||
|
"""
|
||||||
|
allow_failure || exit(1)
|
||||||
|
end
|
||||||
|
if !isempty(deleted)
|
||||||
|
println("Deleted $(length(deleted)) caches on ref `$ref` matching restore key `$restore_key`")
|
||||||
|
println.(deleted)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
else
|
||||||
|
throw(ArgumentError("Unexpected subcommand: $subcommand"))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
try
|
||||||
|
# do a gc with the standard 7-day delay
|
||||||
|
Pkg.gc()
|
||||||
|
handle_caches()
|
||||||
|
catch e
|
||||||
|
@error "An error occurred while managing existing caches" e
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user