mirror of
https://github.com/julia-actions/cache.git
synced 2026-02-12 17:36:53 +08:00
* URL encode any invalid key characters * Test we handle invalid chars * Job matrices must match * Empty commit * Empty commit
164 lines
5.1 KiB
YAML
164 lines
5.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'action.yml'
|
|
- 'handle_caches.jl'
|
|
- '.github/**'
|
|
pull_request:
|
|
paths:
|
|
- 'action.yml'
|
|
- 'handle_caches.jl'
|
|
- '.github/**'
|
|
|
|
# needed to allow julia-actions/cache to delete old caches that it has created
|
|
permissions:
|
|
actions: write
|
|
contents: read
|
|
|
|
jobs:
|
|
generate-key:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
cache-name: ${{ steps.name.outputs.cache-name }}
|
|
steps:
|
|
- name: Generate random file
|
|
shell: 'julia --color=yes {0}'
|
|
run: 'write("random.txt", string(rand(10)))'
|
|
- name: Set cache-name as output
|
|
id: name
|
|
run: echo "cache-name=${{ hashFiles('random.txt') }}" >> $GITHUB_OUTPUT
|
|
|
|
test-save:
|
|
needs: generate-key
|
|
strategy:
|
|
matrix:
|
|
dep:
|
|
- name: pandoc_jll
|
|
version: "3"
|
|
invalid-chars: "," # Use invalid characters in job matrix to ensure we escape them
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macOS-latest
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
JULIA_DEPOT_PATH: /tmp/julia-depot
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
- name: Save cache
|
|
id: cache
|
|
uses: ./
|
|
with:
|
|
cache-name: ${{ needs.generate-key.outputs.cache-name }}
|
|
- 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; Pkg.add(PackageSpec(name="${{ matrix.dep.name }}", version="${{ matrix.dep.version }}"))'
|
|
|
|
# Do tests with no matrix also given the matrix is auto-included in cache key
|
|
test-save-nomatrix:
|
|
needs: generate-key
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
- name: Save cache
|
|
id: cache
|
|
uses: ./
|
|
with:
|
|
cache-name: ${{ needs.generate-key.outputs.cache-name }}
|
|
- 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; Pkg.add("pandoc_jll")'
|
|
|
|
test-restore:
|
|
needs: [generate-key, test-save]
|
|
strategy:
|
|
matrix:
|
|
dep:
|
|
- name: pandoc_jll
|
|
version: "3"
|
|
invalid-chars: "," # Use invalid characters in job matrix to ensure we escape them
|
|
os:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macOS-latest
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
JULIA_DEPOT_PATH: /tmp/julia-depot
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
- name: Restore cache
|
|
id: cache
|
|
uses: ./
|
|
with:
|
|
cache-name: ${{ needs.generate-key.outputs.cache-name }}
|
|
- 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")
|
|
@assert !isempty(readdir(artifacts_dir))
|
|
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-restore-nomatrix:
|
|
needs: [generate-key, test-save-nomatrix]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
|
|
- name: Restore cache
|
|
id: cache
|
|
uses: ./
|
|
with:
|
|
cache-name: ${{ needs.generate-key.outputs.cache-name }}
|
|
- 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")
|
|
@assert !isempty(readdir(artifacts_dir))
|
|
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))
|
|
|