File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,20 @@ jobs:
176
176
image : " samba-server:nightly"
177
177
retention_days : 1
178
178
179
+ build-nightly-server-centos :
180
+ runs-on : ubuntu-latest
181
+ env :
182
+ BUILDAH_FORMAT : oci
183
+ steps :
184
+ - uses : actions/checkout@v3
185
+ - name : Build the nightly server image
186
+ run : make OS_NAME=centos build-nightly-server
187
+ - name : Upload nightly server image
188
+ uses : ishworkh/docker-image-artifact-upload@v1
189
+ with :
190
+ image : " samba-server:centos-nightly"
191
+ retention_days : 1
192
+
179
193
build-nightly-ad-server :
180
194
runs-on : ubuntu-latest
181
195
env :
@@ -202,6 +216,18 @@ jobs:
202
216
- name : Test the nightly server image
203
217
run : LOCAL_TAG=samba-server:nightly tests/test-samba-container.sh
204
218
219
+ test-nightly-server-centos :
220
+ needs : build-nightly-server-centos
221
+ runs-on : ubuntu-latest
222
+ steps :
223
+ - uses : actions/checkout@v3
224
+ - name : Download nightly server image
225
+ uses : ishworkh/docker-image-artifact-download@v1
226
+ with :
227
+ image : " samba-server:centos-nightly"
228
+ - name : Test the nightly server image
229
+ run : LOCAL_TAG=samba-server:centos-nightly tests/test-samba-container.sh
230
+
205
231
test-ad-server-kubernetes :
206
232
needs :
207
233
- build-ad-server
You can’t perform that action at this time.
0 commit comments