aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2024-04-10 15:17:47 +0100
committerLasse Collin <lasse.collin@tukaani.org>2024-04-11 00:15:35 +0300
commitbc899f9e0700ad153bd65f4804c4de7515c8a847 (patch)
tree061869e217a2c4f9e06c9eae90402b482586e3be
parentci: make UBSAN abort on errors (diff)
downloadxz-bc899f9e0700ad153bd65f4804c4de7515c8a847.tar.xz
ci: make automake's test runner verbose on failures
This is a lot easier to work with than the save-logs thing the action tries to do...
-rwxr-xr-xbuild-aux/ci_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/ci_build.sh b/build-aux/ci_build.sh
index e6926d3e..e92d88c9 100755
--- a/build-aux/ci_build.sh
+++ b/build-aux/ci_build.sh
@@ -262,7 +262,7 @@ then
autotools)
cd "$DEST_DIR"
# If the tests fail, copy the test logs into the artifacts folder
- if make check LOG_COMPILER="$WRAPPER"
+ if make check VERBOSE=1 LOG_COMPILER="$WRAPPER"
then
:
else