summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2021-01-03 23:53:34 -0500
committerBen Gamari <ben@smart-cactus.org>2021-02-22 21:38:28 -0500
commit34928763213787d4fa715ac775d9a777e6da756b (patch)
tree390721971bd56120c2b4c4d346e4ca96388b6880
parent87a07eeb35724f2cf785f03e830e6726b056e346 (diff)
downloadhaskell-wip/fix-test-type.tar.gz
gitlab-ci: Reduce testsuite verbosity of debug jobwip/fix-test-type
Otherwise the log sizes exceed the 16MByte log size limit.
-rw-r--r--.gitlab-ci.yml3
-rwxr-xr-x.gitlab/ci.sh1
2 files changed, 4 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8e634cad6e..6902fc0f36 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -683,6 +683,9 @@ validate-x86_64-linux-deb9-debug:
ValidateSpeed: SLOW
# Override validate flavour default; see #16890.
BUILD_SPHINX_PDF: "YES"
+ # Reduce verbosity otherwise the logs exceed the maximum log size
+ # (16MBytes).
+ TEST_VERBOSE: 0
TEST_SPEED: slow
TEST_ENV: "x86_64-linux-deb9-debug"
BIN_DIST_PREP_TAR_COMP: "ghc-x86_64-deb9-linux-debug.tar.xz"
diff --git a/.gitlab/ci.sh b/.gitlab/ci.sh
index 9aff04514c..7a0fefc92b 100755
--- a/.gitlab/ci.sh
+++ b/.gitlab/ci.sh
@@ -454,6 +454,7 @@ function test_make() {
run "$MAKE" V=0 \
"$test_target" \
THREADS="$cores" \
+ VERBOSE="$TEST_VERBOSE" \
JUNIT_FILE=../../junit.xml
}