File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,41 +14,35 @@ jobs:
1414 tools-deps : ' 1.10.1.536'
1515
1616 - name : Cache maven
17- uses : actions/cache@v1
17+ uses : actions/cache@v2
1818 env :
1919 cache-name : cache-maven
2020 with :
2121 path : ~/.m2
22- key : ${{ runner.os }}-build- ${{ env.cache-name }}-${{ hashFiles('**/deps.edn') }}
22+ key : ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/deps.edn') }}
2323 restore-keys : |
24- ${{ runner.os }}-build-${{ env.cache-name }}-
25- ${{ runner.os }}-build-
26- ${{ runner.os }}-
24+ ${{ runner.os }}-${{ env.cache-name }}-
2725
2826 - name : Cache gitlibs
29- uses : actions/cache@v1
27+ uses : actions/cache@v2
3028 env :
3129 cache-name : cache-gitlibs
3230 with :
3331 path : ~/.gitlibs
34- key : ${{ runner.os }}-build- ${{ env.cache-name }}-${{ hashFiles('**/deps.edn') }}
32+ key : ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/deps.edn') }}
3533 restore-keys : |
36- ${{ runner.os }}-build-${{ env.cache-name }}-
37- ${{ runner.os }}-build-
38- ${{ runner.os }}-
39-
40- - name : Cache node modules
41- uses : actions/cache@v1
34+ ${{ runner.os }}-${{ env.cache-name }}-
35+
36+ - name : Cache JSC
37+ uses : actions/cache@v2
4238 env :
43- cache-name : cache-nodemodules
39+ cache-name : cache-jsc
4440 with :
45- path : ~/node_modules
46- key : ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
41+ path : WebKit
42+ key : ${{ runner.os }}-jsc
4743 restore-keys : |
48- ${{ runner.os }}-build-${{ env.cache-name }}-
49- ${{ runner.os }}-build-
50- ${{ runner.os }}-
51-
44+ ${{ runner.os }}-jsc
45+
5246 - name : Build tests
5347 run : clojure -A:runtime.test.build
5448
You can’t perform that action at this time.
0 commit comments