File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,28 @@ concurrency:
1818
1919jobs :
2020 enzyme :
21- runs-on : ubuntu -latest
21+ runs-on : macos -latest
2222 steps :
2323 - uses : actions/checkout@v5
2424
2525 - uses : julia-actions/setup-julia@v2
2626 with :
27- version : " 1.11.6 "
27+ version : " 1.11"
2828
2929 - uses : julia-actions/cache@v2
30+ id : julia-cache
3031
3132 - name : Run AD with Enzyme on demo models
3233 working-directory : test/integration/enzyme
3334 run : |
3435 julia --project=. --color=yes -e 'using Pkg; Pkg.instantiate()'
3536 julia --project=. --color=yes main.jl
37+
38+ - name : Save Julia depot cache on cancel or failure
39+ id : julia-cache-save
40+ if : cancelled() || failure()
41+ uses : actions/cache/save@v4
42+ with :
43+ path : |
44+ ${{ steps.julia-cache.outputs.cache-paths }}
45+ key : ${{ steps.julia-cache.outputs.cache-key }}
You can’t perform that action at this time.
0 commit comments