File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 93
93
# libReactant: packaged
94
94
# version: '1.10'
95
95
# test_group: integration
96
+ TMPDIR : ${{ github.workspace }}/tmp
97
+ JULIA_DEPOT_PATH : " ${{ github.workspace }}/.julia_depot:"
96
98
steps :
97
99
- name : Set TMPDIR
98
100
# We have to use `${GITHUB_WORKSPACE}` instead of `github.workspace` because GitHub
@@ -104,6 +106,17 @@ jobs:
104
106
- name : Create TMPDIR
105
107
run : |
106
108
mkdir -p ${{ env.TMPDIR }}
109
+ - name : Create Julia Depot Directory
110
+ run : |
111
+ mkdir -p ${{ github.workspace }}/.julia_depot
112
+ - name : Cache Julia Depot
113
+ uses : actions/cache@v4
114
+ with :
115
+ path : ${{ github.workspace }}/.julia_depot
116
+ key : julia-depot-${{ runner.os }}-${{ runner.arch }}-${{ matrix.version }}-${{ hashFiles('**/Project.toml', '**/Manifest.toml') }}
117
+ restore-keys : |
118
+ julia-depot-${{ runner.os }}-${{ runner.arch }}-${{ matrix.version }}-
119
+ julia-depot-${{ runner.os }}-${{ runner.arch }}-
107
120
- uses : julia-actions/setup-julia@v2
108
121
if : ${{ ! matrix.assertions }}
109
122
with :
You can’t perform that action at this time.
0 commit comments