Skip to content
Snippets Groups Projects
Commit 631a137b authored by kristenk's avatar kristenk Committed by Mikhail Glushenkov
Browse files

Add a Travis job with the 'debug-assertions' build flag enabled.

parent ab5257cd
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,9 @@ matrix:
- env: GHCVER=8.0.1 SCRIPT=script PARSEC=YES TAGSUFFIX="-parsec"
os: linux
sudo: required
- env: GHCVER=8.0.1 SCRIPT=script DEBUG_ASSERTIONS=YES TAGSUFFIX="-fdebug-assertions"
os: linux
sudo: required
- env: GHCVER=8.0.1 SCRIPT=bootstrap
sudo: required
os: linux
......
......@@ -143,7 +143,12 @@ fi
# Needed to work around some bugs in nix-local-build code.
export CABAL_BUILDDIR="${CABAL_INSTALL_BDIR}"
timed cabal new-build $jobs cabal-install:cabal \
if [ "x$DEBUG_ASSERTIONS" = "xYES" ]; then
CABAL_INSTALL_FLAGS=-fdebug-assertions
fi
timed cabal new-build $jobs $CABAL_INSTALL_FLAGS \
cabal-install:cabal \
cabal-install:integration-tests \
cabal-install:integration-tests2 \
cabal-install:unit-tests \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment