Skip to content
Snippets Groups Projects
Commit 862afa05 authored by Alex Biehl's avatar Alex Biehl Committed by GitHub
Browse files

Use travis_retry for cabal invocations

parent 83c460c1
No related branches found
No related tags found
No related merge requests found
......@@ -51,8 +51,8 @@ install:
- sed -i 's/^jobs:/-- jobs:/' ${HOME}/.cabal/config
- rm -fv cabal.project.local
- rm -f cabal.project.freeze
- cabal new-build -w ${HC} ${TEST} ${BENCH} --dep -j2 all -v3
- cabal new-build -w ${HC} --disable-tests --disable-benchmarks --dep -j2 all -v3
- travis_retry cabal new-build -w ${HC} ${TEST} ${BENCH} --dep -j2 all
- travis_retry cabal new-build -w ${HC} --disable-tests --disable-benchmarks --dep -j2 all
# Here starts the actual work to be performed for the package under test;
# any command which exits with a non-zero exit code causes the build to fail.
......@@ -74,7 +74,7 @@ script:
# - rm -rf ./dist-newstyle
# build & run tests
- cabal new-build -w ${HC} ${TEST} ${BENCH} all -v3
- if [ "x$TEST" = "x--enable-tests" ]; then cabal new-test -w ${HC} ${TEST} all -v3; fi
- cabal new-build -w ${HC} ${TEST} ${BENCH} all
- if [ "x$TEST" = "x--enable-tests" ]; then cabal new-test -w ${HC} ${TEST} all; fi
# EOF
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