From 9de3564e0017a04bed74fd1e1dd7f53cf8e4ab00 Mon Sep 17 00:00:00 2001 From: Lennart Spitzner Date: Sun, 14 Oct 2018 00:56:35 +0200 Subject: [PATCH] travis: Apply fix to stack and new-build too --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d148072..58a4ab2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -271,7 +271,7 @@ script: set -ex case "$BUILD" in stack) - better_wait stack -j$JOBS --no-terminal $ARGS test --bench --no-run-benchmarks --haddock --no-haddock-deps --ghc-options="-j1 +RTS -M500M -RTS -Werror" + better_wait stack -j$JOBS --no-terminal $ARGS test --bench --no-run-benchmarks --haddock --no-haddock-deps --ghc-options="-j1 +RTS -M500M -RTS -Werror -with-rtsopts -N1" ;; cabal) if [ -f configure.ac ]; then autoreconf -i; fi @@ -292,7 +292,7 @@ script: canew) better_wait cabal new-build -j$JOBS --ghc-options="-j1 +RTS -M500M -RTS" --disable-tests --disable-benchmarks better_wait cabal new-build -j$JOBS --ghc-options="-j1 +RTS -M500M -RTS" --enable-tests --enable-benchmarks - time cabal new-test -j1 --ghc-options="-j1 +RTS -M500M -RTS" + time cabal new-test -j1 --ghc-options="-j1 +RTS -M500M -RTS -with-rtsopts -N1" ;; esac set +ex