diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-07-22 01:54:40 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-07-22 19:31:02 +0200 |
commit | cf57f8f9e9a649d7ffdfe0be09e503f6ed468a5d (patch) | |
tree | 3873f77701d1d99d8b0c11c452533616d1b14354 | |
parent | e3df1b1e847fe3ae7793b2d56ff9976343d58985 (diff) | |
download | haskell-cf57f8f9e9a649d7ffdfe0be09e503f6ed468a5d.tar.gz |
Travis: do pass `--quiet` to validate
It's failing at the moment with "The log length has exceeded the limit
of 4 Megabytes".
We don't seem to have periods of >10 minutes without output after all,
which was the initial reason of not using `--quiet`.
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index f8829feeb1..4527708734 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,6 +48,4 @@ 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 - # Don't use --quiet, as it might cause the testsuite to not print output for - # over 10 minutes, causing Travis to kill our job. - - THREADS=3 SKIP_PERF_TESTS=YES ./validate --fast + - THREADS=3 SKIP_PERF_TESTS=YES ./validate --fast --quiet |