summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorThomas Miedema <thomasmiedema@gmail.com>2015-08-17 14:31:07 +0200
committerThomas Miedema <thomasmiedema@gmail.com>2015-08-17 15:43:33 +0200
commite367e2729ecf2b66b81680fe1b60bf1ef21880ed (patch)
treee46f66fd4014c5960e7312cbf6a98be68d9da03e /.travis.yml
parent744ff88537fa26bd4826ea35679fce04c65eee97 (diff)
downloadhaskell-e367e2729ecf2b66b81680fe1b60bf1ef21880ed.tar.gz
Travis: prevent 10' no output, by setting VERBOSE=2
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 4527708734..660d38305a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -48,4 +48,9 @@ script:
- echo 'DYNAMIC_GHC_PROGRAMS = NO' >> mk/validate.mk
- echo 'GhcLibWays = v' >> mk/validate.mk
- if [ "$DEBUG_STAGE2" = "YES" ]; then echo 'GhcStage2HcOpts += -DDEBUG' >> mk/validate.mk; fi
- - THREADS=3 SKIP_PERF_TESTS=YES ./validate --fast --quiet
+ # * Use --quiet, otherwise the build log might exceed the limit of 4
+ # megabytes, causing Travis to kill our job.
+ # * But use VERBOSE=2 (the default, but not when using --quiet) otherwise
+ # the testsuite might not print output for over 10 minutes (more likely so
+ # when DEBUG_STAGE2=NO), causing Travis to again kill our job.
+ - THREADS=3 SKIP_PERF_TESTS=YES VERBOSE=2 ./validate --fast --quiet