From 9372163f7d748b865402b5228262a11610bdf524 Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Wed, 10 Jul 2019 15:37:09 +0200 Subject: [PATCH] [validation] docker: Keep going after build fail When building all validation docker images, if one of the image builds fails, the next image builds are currently skipped. Keep going through all the build steps, while still exiting with a non zero return code in case one of the steps fails. Change-Id: Ib983ec311caaa71c9429280aa9295568380e9387 Signed-off-by: Alexandru Avadanii --- jjb/validation/validation-docker.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jjb/validation/validation-docker.yaml b/jjb/validation/validation-docker.yaml index ae3d0d4..7a7b4e3 100644 --- a/jjb/validation/validation-docker.yaml +++ b/jjb/validation/validation-docker.yaml @@ -124,7 +124,7 @@ settings-file: '{mvn-settings}' - shell: | #!/bin/bash -ex - make -C docker push-all + make -k -C docker push-all - job-template: name: 'validation-docker-manifest-{stream}' @@ -155,7 +155,7 @@ settings-file: '{mvn-settings}' - shell: | #!/bin/bash -ex - for sd in docker/*/.; do make -C $sd .push_manifest; done + for sd in docker/*/.; do make -k -C $sd .push_manifest; done # parameter macro - parameter: -- 2.16.6