add suggestion to use cache action if no depot is detected (#41)

This commit is contained in:
Ian Butterworth
2024-01-05 14:39:52 -05:00
committed by GitHub
parent d4b940ea5e
commit 90dd6f23eb
2 changed files with 11 additions and 14 deletions

View File

@@ -58,18 +58,9 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: ./.github/actions/julia-buildpkg
with:
ignore-no-cache: true
env:
JULIA_PKG_SERVER: ${{ matrix.pkg-server }}