File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 14
14
15
15
jobs :
16
16
test :
17
- name : Julia nightly - x64 - runner ${{ matrix.runner }} - SquashFS ${{ matrix.squashfs }}
17
+ name : Julia ${{ matrix.julia-version }} - x64 - runner ${{ matrix.runner }} - SquashFS ${{ matrix.squashfs }}
18
18
timeout-minutes : 30
19
19
runs-on : ubuntu-latest
20
20
env :
@@ -27,20 +27,23 @@ jobs:
27
27
# Add a job that uses the privileged builder with squashfs shards
28
28
- runner : privileged
29
29
squashfs : true
30
+ julia-version : " 1.6"
30
31
31
32
# Add a job that uses the unprivileged builder with unpacked shards
32
33
- runner : unprivileged
33
34
squashfs : false
35
+ julia-version : " 1.6"
34
36
35
37
# Add a job that uses the docker builder with unpacked shards
36
38
- runner : docker
37
39
squashfs : false
40
+ julia-version : " 1.6"
38
41
39
42
steps :
40
43
- uses : actions/checkout@v2
41
44
- uses : julia-actions/setup-julia@v1
42
45
with :
43
- version : " 1.6-nightly "
46
+ version : ${{ matrix.julia-version }}
44
47
arch : x64
45
48
- uses : julia-actions/julia-buildpkg@latest
46
49
- name : System info
@@ -58,17 +61,17 @@ jobs:
58
61
- uses : actions/checkout@v2
59
62
- uses : julia-actions/setup-julia@latest
60
63
with :
61
- version : 1.6-nightly
64
+ version : " 1.6"
62
65
- name : Cache artifacts
63
66
uses : actions/cache@v2
64
67
env :
65
68
cache-name : cache-artifacts
66
69
with :
67
70
path : ~/.julia/artifacts
68
- key : ${{ runner.os }}-test -${{ env.cache-name }}-${{ hashFiles('**/docs/Project.toml') }}
71
+ key : ${{ runner.os }}-docs -${{ env.cache-name }}-${{ hashFiles('**/docs/Project.toml') }}
69
72
restore-keys : |
70
- ${{ runner.os }}-test -${{ env.cache-name }}-
71
- ${{ runner.os }}-test -
73
+ ${{ runner.os }}-docs -${{ env.cache-name }}-
74
+ ${{ runner.os }}-docs -
72
75
${{ runner.os }}-
73
76
- uses : julia-actions/julia-docdeploy@releases/v1
74
77
env :
You can’t perform that action at this time.
0 commit comments