From: Adrian Villin Date: Wed, 17 Jul 2024 13:03:42 +0000 (+0200) Subject: hs-test: exit immediately if docker build fails X-Git-Tag: v25.02-rc0~127 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=aedfd7ca3d2f5b17cfd20d4dc3919fe765adb27a;p=vpp.git hs-test: exit immediately if docker build fails Type: test Change-Id: I299d023ce59b931697352c54e4796ba0af2ab1af Signed-off-by: Adrian Villin --- diff --git a/extras/hs-test/script/build_hst.sh b/extras/hs-test/script/build_hst.sh index 0f5c0a43630..e7e8a0fb2fa 100755 --- a/extras/hs-test/script/build_hst.sh +++ b/extras/hs-test/script/build_hst.sh @@ -69,7 +69,7 @@ fi docker_build () { tag=$1 dockername=$2 - set -x + set -ex # shellcheck disable=2086 docker buildx build ${DOCKER_CACHE_ARGS} \ --build-arg UBUNTU_VERSION \ @@ -78,7 +78,7 @@ docker_build () { --build-arg HTTP_PROXY="$HTTP_PROXY" \ --build-arg HTTPS_PROXY="$HTTP_PROXY" \ -t "$tag" -f docker/Dockerfile."$dockername" . - set +x + set +ex } docker_build hs-test/vpp vpp