diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-10-14 09:47:31 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-10-14 09:47:31 -0700 |
commit | d534346084b72242c23a9526204369738c49aa40 (patch) | |
tree | f3a0c83bf1db454ea2531294302380b55aa4b6ef | |
parent | eed4514c4c8985da8b0e1c3d358311a0043ea870 (diff) | |
download | pandoc-d534346084b72242c23a9526204369738c49aa40.tar.gz |
Revert "Tweak travis for ghc 8.6.1."
This reverts commit eed4514c4c8985da8b0e1c3d358311a0043ea870.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 530f1bb30..cb2e81213 100644 --- a/.travis.yml +++ b/.travis.yml @@ -122,7 +122,7 @@ install: cabal install -v1 --disable-optimization --flags="$FLAGS" --enable-tests --force-reinstalls --reorder-goals --max-backjumps=-1 $CABALARGS ;; *) - cabal install --disable-optimization --only-dependencies --flags="$FLAGS" --enable-tests --force-reinstalls --reorder-goals --max-backjumps=-1 $CABALARGS . + cabal install --disable-optimization --only-dependencies --flags="$FLAGS" --enable-tests --force-reinstalls --reorder-goals --max-backjumps=-1 $CABALARGS ;; esac ;; @@ -140,7 +140,7 @@ script: cabal sdist --output-directory=sourcedist && \ cd sourcedist && \ cabal configure --disable-optimization --enable-tests -v2 --flags="$FLAGS" --ghc-options="$OPTS" $CABALARGS && \ - cabal build -v2 -j2 . && \ + cabal build -v2 -j2 && \ cabal test --test-options="--pattern=\"$TESTPATTERN\"" ;; esac |