File tree Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Expand file tree Collapse file tree 2 files changed +21
-2
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " github-actions"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " monthly"
7
+ open-pull-requests-limit : 100
8
+ labels :
9
+ - " dependencies"
10
+ - " github-actions"
Original file line number Diff line number Diff line change 7
7
- master
8
8
- develop
9
9
10
+ permissions :
11
+ contents : read
12
+
10
13
jobs :
11
14
test :
12
15
runs-on : ubuntu-latest
16
+ timeout-minutes : 20
13
17
strategy :
14
18
fail-fast : false
15
19
matrix :
@@ -21,14 +25,19 @@ jobs:
21
25
- ' 1.10.7' # current LTS
22
26
- ' 1.11.2' # currently the latest stable release
23
27
steps :
24
- - uses : actions/checkout@v2
28
+ - uses : actions/checkout@v4
29
+ with :
30
+ persist-credentials : false
31
+
25
32
- name : Setup Docker
26
33
run : |
27
34
docker version
28
35
docker compose version
29
- docker build --build-arg JULIA_VERSION=${{matrix.version}} -t slurm-cluster-julia -f ci/Dockerfile .
36
+ docker build --build-arg JULIA_VERSION="${MATRIX_VERSION:?}" -t slurm-cluster-julia -f ci/Dockerfile .
30
37
docker compose -f ci/docker-compose.yml up -d
31
38
docker ps
39
+ env :
40
+ MATRIX_VERSION : ${{matrix.version}}
32
41
- name : Test Docker
33
42
run : |
34
43
docker exec -t slurmctld julia --version
You can’t perform that action at this time.
0 commit comments