From ec95f07a1fe11619403d2c7e7caa4c1088f64e73 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Tue, 10 Sep 2024 23:37:45 +0100 Subject: [PATCH] ci: Quieten test execution Signed-off-by: Daniel Stone Part-of: --- .gitlab-ci/common/init-stage2.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci/common/init-stage2.sh b/.gitlab-ci/common/init-stage2.sh index b5c965d70da..b7a62b3c531 100755 --- a/.gitlab-ci/common/init-stage2.sh +++ b/.gitlab-ci/common/init-stage2.sh @@ -207,13 +207,18 @@ if [ -n "$HWCI_START_WESTON" ]; then while [ ! -S "$WESTON_X11_SOCK" ]; do sleep 1; done fi +set +x + section_end init_stage2 +echo "Running ${HWCI_TEST_SCRIPT} ${HWCI_TEST_ARGS} ..." + set +e $HWCI_TEST_SCRIPT ${HWCI_TEST_ARGS:-}; EXIT_CODE=$? set -e section_start post_test_cleanup "Cleaning up after testing, uploading results" +set -x # Make sure that capture-devcoredump is done before we start trying to tar up # artifacts -- if it's writing while tar is reading, tar will throw an error and