@@ -6,7 +6,7 @@ name: Docker images tests
6
6
jobs :
7
7
nightly-ubuntu-latest :
8
8
name : nightly-ubuntu-latest
9
- runs-on : [ubuntu-20 .04]
9
+ runs-on : [ubuntu-22 .04]
10
10
timeout-minutes : 120
11
11
steps :
12
12
- uses : actions/checkout@v3
23
23
24
24
nightly-ubuntu-2204 :
25
25
name : nightly-ubuntu-2204
26
- runs-on : [ubuntu-20 .04]
26
+ runs-on : [ubuntu-22 .04]
27
27
timeout-minutes : 120
28
28
steps :
29
29
- uses : actions/checkout@v3
39
39
40
40
nightly-ubuntu-2004 :
41
41
name : nightly-ubuntu-2004
42
- runs-on : [ubuntu-20 .04]
42
+ runs-on : [ubuntu-22 .04]
43
43
timeout-minutes : 120
44
44
steps :
45
45
- uses : actions/checkout@v3
55
55
56
56
nightly-debian-latest :
57
57
name : nightly-debian-latest
58
- runs-on : [ubuntu-20 .04]
58
+ runs-on : [ubuntu-22 .04]
59
59
timeout-minutes : 120
60
60
steps :
61
61
- uses : actions/checkout@v3
71
71
72
72
nightly-debian-bookworm :
73
73
name : nightly-debian-bookworm
74
- runs-on : [ubuntu-20 .04]
74
+ runs-on : [ubuntu-22 .04]
75
75
timeout-minutes : 120
76
76
steps :
77
77
- uses : actions/checkout@v3
84
84
85
85
- name : Run hello world test
86
86
run : docker-compose -f docker/nightly-debian-bookworm/docker-compose.yml run roc examples/helloWorld.roc
87
+
88
+ nightly-debian-buster :
89
+ name : nightly-debian-buster
90
+ runs-on : [ubuntu-22.04]
91
+ timeout-minutes : 120
92
+ steps :
93
+ - uses : actions/checkout@v3
94
+
95
+ - name : Copy example docker file
96
+ run : cp docker/nightly-debian-buster/docker-compose.example.yml docker/nightly-debian-buster/docker-compose.yml
97
+
98
+ - name : Build image
99
+ run : docker-compose -f docker/nightly-debian-buster/docker-compose.yml build
100
+
101
+ - name : Run hello world test
102
+ run : docker-compose -f docker/nightly-debian-buster/docker-compose.yml run roc examples/helloWorld.roc
103
+
0 commit comments