diff options
Diffstat (limited to '.gitlab/ci.sh')
-rwxr-xr-x | .gitlab/ci.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab/ci.sh b/.gitlab/ci.sh index f031c5f03f..81086d2ce1 100755 --- a/.gitlab/ci.sh +++ b/.gitlab/ci.sh @@ -427,10 +427,12 @@ function clean() { } function run_hadrian() { + if [ -z "$BIGNUM_BACKEND" ]; then BIGNUM_BACKEND="gmp"; fi run hadrian/build-cabal \ --flavour="$FLAVOUR" \ -j"$cores" \ --broken-test="$BROKEN_TESTS" \ + --bignum=$BIGNUM_BACKEND \ $HADRIAN_ARGS \ $@ } |