[commit: ghc] master: Travis: use validate --quiet to prevent hitting log file limits (94fff17)

git at git.haskell.org git at git.haskell.org
Sun May 31 11:18:39 UTC 2015


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/94fff17963af2292504d02ead819bc4340878786/ghc

>---------------------------------------------------------------

commit 94fff17963af2292504d02ead819bc4340878786
Author: Thomas Miedema <thomasmiedema at gmail.com>
Date:   Sun May 31 13:11:03 2015 +0200

    Travis: use validate --quiet to prevent hitting log file limits
    
    Currently, this will use `make -s` instead of `make`, such that `make`
    doesn't echo the commands it's going to run. And second, it calls the
    testdriver with a lower verbosity, such that the shell commands it runs
    don't get printed either.


>---------------------------------------------------------------

94fff17963af2292504d02ead819bc4340878786
 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index fe48552..c740515 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,7 +30,6 @@ install:
 # - sudo apt-get install haskell-platform autoconf libtool make ncurses-dev g++ dblatex docbook-xsl docbook-utils
 # - cabal update
 script:
- - echo 'V = 0' >> mk/validate.mk # otherwise we hit log file limits on travis.
  # do  not build docs
  - echo 'HADDOCK_DOCS       = NO' >> mk/validate.mk
  - echo 'BUILD_DOCBOOK_HTML = NO' >> mk/validate.mk
@@ -40,4 +39,5 @@ script:
  - echo 'DYNAMIC_GHC_PROGRAMS = NO' >> mk/validate.mk
  - echo 'GhcLibWays = v' >> mk/validate.mk
  - if [ "$DEBUG_STAGE" = "YES" ]; then echo 'GhcStage2HcOpts += -DDEBUG' >> mk/validate.mk; fi
- - CPUS=2 SKIP_PERF_TESTS=YES ./validate --fast
+ # use --quiet, otherwise we hit log file limits on travis.
+ - CPUS=2 SKIP_PERF_TESTS=YES ./validate --fast --quiet



More information about the ghc-commits mailing list