Skip to content

Commit ade99cf

Browse files
author
LuizFCDuarte
committed
👷 Undo changes in CI build
1 parent ab3bc06 commit ade99cf

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,16 @@ jobs:
3737
with:
3838
version: ${{ matrix.version }}
3939
arch: ${{ matrix.arch }}
40-
- uses: actions/cache@v3
40+
- uses: actions/cache@v1
41+
env:
42+
cache-name: cache-artifacts
4143
with:
4244
path: ~/.julia/artifacts
43-
key: ${{ runner.os }}-julia-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}
45+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
4446
restore-keys: |
45-
${{ runner.os }}-julia-
46-
47-
- name: Activate Project and Resolve Dependencies
48-
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.resolve(); Pkg.instantiate()'
49-
50-
- name: Debug Installed Packages
51-
run: julia -e 'using Pkg; Pkg.activate("."); Pkg.status()'
52-
47+
${{ runner.os }}-test-${{ env.cache-name }}-
48+
${{ runner.os }}-test-
49+
${{ runner.os }}-
5350
- uses: julia-actions/julia-buildpkg@v1
5451
- uses: julia-actions/julia-runtest@v1
5552
- uses: julia-actions/julia-processcoverage@v1

0 commit comments

Comments
 (0)