From eae6f5eb689ddc544c7123a76ec634137fba6500 Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Tue, 17 Mar 2026 07:52:41 +0200 Subject: [PATCH] gitlab-ci: Print and exit if cmd exits with non-zero status This should allow stopping rather than silently continue. Fixes: #1096 Signed-off-by: Marius Vlad --- .gitlab-ci/build-and-test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci/build-and-test.sh b/.gitlab-ci/build-and-test.sh index c6c93fdbd..768069a25 100755 --- a/.gitlab-ci/build-and-test.sh +++ b/.gitlab-ci/build-and-test.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -xe source "${FDO_CI_BASH_HELPERS}"