[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 3/6] configure: repeat ourselves for the benefit of CI
From: |
Alex Bennée |
Subject: |
[PULL 3/6] configure: repeat ourselves for the benefit of CI |
Date: |
Wed, 21 Dec 2022 14:40:16 +0000 |
Our CI system echos the lines it executes but not the expansions. For
the sake of a line of extra verbosity during the configure phase lets
echo the invocation of script to stdout as well as the log when on CI.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20221221090411.1995037-4-alex.bennee@linaro.org>
diff --git a/configure b/configure
index 7a804fb657..d89e883844 100755
--- a/configure
+++ b/configure
@@ -83,9 +83,10 @@ rm -f config.log
# Print a helpful header at the top of config.log
echo "# QEMU configure log $(date)" >> config.log
printf "# Configured with:" >> config.log
-printf " '%s'" "$0" "$@" >> config.log
-echo >> config.log
-echo "#" >> config.log
+# repeat the invocation to log and stdout for CI
+invoke=$(printf " '%s'" "$0" "$@")
+test -n "$GITLAB_CI" && echo "configuring with: $invoke"
+{ echo "$invoke"; echo; echo "#"; } >> config.log
quote_sh() {
printf "%s" "$1" | sed "s,','\\\\'',g; s,.*,'&',"
--
2.34.1
- [PULL 0/6] testing updates, Alex Bennée, 2022/12/21
- [PULL 1/6] configure: Fix check-tcg not executing any tests, Alex Bennée, 2022/12/21
- [PULL 3/6] configure: repeat ourselves for the benefit of CI,
Alex Bennée <=
- [PULL 2/6] gitlab: turn off verbose logging for make check on custom runners, Alex Bennée, 2022/12/21
- [PULL 4/6] tests/tcg: fix unused variable in linux-test, Alex Bennée, 2022/12/21
- [PULL 6/6] gitlab-ci: Disable docs and GUIs for the build-tci and build-tcg-disabled jobs, Alex Bennée, 2022/12/21
- [PULL 5/6] tests/docker: use prebuilt toolchain for debian-hexagon-cross, Alex Bennée, 2022/12/21
- Re: [PULL 0/6] testing updates, Peter Maydell, 2022/12/22