diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2017-08-19 15:33:52 +0200 |
---|---|---|
committer | Joachim Breitner <mail@joachim-breitner.de> | 2017-09-07 13:42:57 +0100 |
commit | 055d73c6576bed2affaf96ef6a6b89aeb2cd2e9f (patch) | |
tree | a2742bc8eeca572c9bd413507981cc88e80534a2 /.travis.yml | |
parent | d97a6fe2b97c81a167219eae892d3820c0685435 (diff) | |
download | haskell-055d73c6576bed2affaf96ef6a6b89aeb2cd2e9f.tar.gz |
Travis: Boot with ghc-8.2.1, and disable test suite
by only building, we can hopefully be in the build time limit, while
still providing a bit of useful service, e.g. indicating early when
GitHub pull requests (with seemingly innocent results) fail to build.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index 218f5ba6b1..09d9fef137 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,15 +17,15 @@ addons: #- llvm-toolchain-precise-3.7 - ubuntu-toolchain-r-test packages: - - cabal-install-1.18 - - ghc-7.10.3 - - alex-3.1.3 - - happy-1.19.4 + - cabal-install-2.0 + - ghc-8.2.1 + - alex-3.1.7 + - happy-1.19.5 - python3 #- llvm-3.7 before_install: - - export PATH=/opt/ghc/7.10.3/bin:/opt/cabal/1.18/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:/usr/lib/llvm-3.7/bin:$PATH + - export PATH=/opt/ghc/8.2.1/bin:/opt/cabal/1.24/bin:/opt/alex/3.1.7/bin:/opt/happy/1.19.5/bin:/usr/lib/llvm-3.7/bin:$PATH # Be explicit about which protocol to use, such that we don't have to repeat the rewrite command for each. - git config remote.origin.url git://github.com/${TRAVIS_REPO_SLUG}.git @@ -57,4 +57,5 @@ script: # when DEBUG_STAGE2=NO), causing Travis to again kill our job. # * Use --fast, to stay within the time limits set by Travis. # See Note [validate and testsuite speed] in toplevel Makefile. - - THREADS=3 SKIP_PERF_TESTS=YES VERBOSE=2 ./validate --fast --quiet + # Actually, do not run test suite. Takes too long. + - THREADS=3 SKIP_PERF_TESTS=YES VERBOSE=2 ./validate --fast --quiet --build-only |