summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-10-12 13:58:54 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2017-10-12 13:58:54 -0700
commit9adc07850c79ae5201f21a9c8b03a14da984007e (patch)
tree909573ede351c4a672bed40c629600f35fc15590 /.travis.yml
parentef6a9266a745b3ce1ec36b049c3ea967004599e7 (diff)
.travis.yml - try with -j1.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 082d9ae5a..d97af2941 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -131,7 +131,7 @@ script:
ulimit -n 4096
cabal sdist --output-directory=sourcedist && \
cd sourcedist && \
- cabal configure --disable-optimization --enable-tests -v2 --flags="$FLAGS" --ghc-options="$OPTS" $CABALARGS && \
+ cabal configure --disable-optimization -j1 --enable-tests -v2 --flags="$FLAGS" --ghc-options="$OPTS" $CABALARGS && \
cabal build -v2 && \
cabal test
;;