diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2021-09-28 17:26:27 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-10-04 23:45:11 -0400 |
commit | 40c81dd297dcfb8259f35372d2367b00e3661603 (patch) | |
tree | d63d08fc84b30aa74e021534963ce1ee97f42a66 /.gitlab | |
parent | 2308a130cac014ab1383a1f90a693c75fdceca67 (diff) | |
download | haskell-40c81dd297dcfb8259f35372d2367b00e3661603.tar.gz |
ci: Run hadrian builds verbosely, but not tests
This reduces the output from the testsuite to a more manageable level.
Fixes #20432
Diffstat (limited to '.gitlab')
-rwxr-xr-x | .gitlab/ci.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.gitlab/ci.sh b/.gitlab/ci.sh index ae386375ee..74b25e7732 100755 --- a/.gitlab/ci.sh +++ b/.gitlab/ci.sh @@ -456,7 +456,7 @@ function build_hadrian() { # N.B. First build Hadrian, unsetting MACOSX_DEPLOYMENT_TARGET which may warn # if the bootstrap libraries were built with a different version expectation. MACOSX_DEPLOYMENT_TARGET="" run_hadrian stage1:exe:ghc-bin - run_hadrian binary-dist + run_hadrian binary-dist -V mv _build/bindist/ghc*.tar.xz "$BIN_DIST_NAME.tar.xz" } @@ -544,7 +544,6 @@ function run_hadrian() { -j"$cores" \ --broken-test="${BROKEN_TESTS:-}" \ --bignum=$BIGNUM_BACKEND \ - -V \ "${args[@]+"${args[@]}"}" \ "$@") } |