[commit: ghc] master: update GHC versions used on travis (051564b)

git at git.haskell.org git at git.haskell.org
Tue Oct 23 20:21:00 UTC 2018


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

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/051564be1f98351dc7f2cdbd2390c9f0508f21bc/ghc

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

commit 051564be1f98351dc7f2cdbd2390c9f0508f21bc
Author: Alp Mestanogullari <alp at well-typed.com>
Date:   Tue Oct 9 13:17:15 2018 +0200

    update GHC versions used on travis
    
    I saw that (nightly) travis builds are failing because we now only support 8.4 or higher to boot a GHC HEAD build. I don't know how to achieve this for the OS X section though.


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

051564be1f98351dc7f2cdbd2390c9f0508f21bc
 .travis.yml | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 3620e5f..f670784 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,18 +3,18 @@ matrix:
     include:
         - os: linux
           env: MODE="selftest"
-          compiler: "GHC 8.2.2"
+          compiler: "GHC 8.4.3"
           addons:
               apt:
                   packages:
-                      - ghc-8.2.2
-                      - cabal-install-2.2
+                      - ghc-8.4.3
+                      - cabal-install-2.4
                       - zlib1g-dev
                   sources: hvr-ghc
 
           before_install:
-              - PATH="/opt/ghc/8.2.2/bin:$PATH"
-              - PATH="/opt/cabal/2.2/bin:$PATH"
+              - PATH="/opt/ghc/8.4.3/bin:$PATH"
+              - PATH="/opt/cabal/2.4/bin:$PATH"
 
           script:
               # Run internal Hadrian tests, after boot and configure.
@@ -22,18 +22,18 @@ matrix:
 
         - os: linux
           env: MODE="--flavour=quickest"
-          compiler: "GHC 8.2.2"
+          compiler: "GHC 8.4.3"
           addons:
               apt:
                   packages:
-                      - ghc-8.2.2
-                      - cabal-install-2.2
+                      - ghc-8.4.3
+                      - cabal-install-2.4
                       - zlib1g-dev
                   sources: hvr-ghc
 
           before_install:
-              - PATH="/opt/ghc/8.2.2/bin:$PATH"
-              - PATH="/opt/cabal/2.2/bin:$PATH"
+              - PATH="/opt/ghc/8.4.3/bin:$PATH"
+              - PATH="/opt/cabal/2.4/bin:$PATH"
 
           script:
               # Build GHC, letting hadrian boot & configure the ghc source tree
@@ -41,18 +41,18 @@ matrix:
 
         - os: linux
           env: MODE="--flavour=quickest --integer-simple"
-          compiler: "GHC 8.4.1"
+          compiler: "GHC 8.6.1"
           addons:
               apt:
                   packages:
-                      - ghc-8.4.1
-                      - cabal-install-2.2
+                      - ghc-8.6.1
+                      - cabal-install-2.4
                       - zlib1g-dev
                   sources: hvr-ghc
 
           before_install:
-              - PATH="/opt/ghc/8.4.1/bin:$PATH"
-              - PATH="/opt/cabal/2.2/bin:$PATH"
+              - PATH="/opt/ghc/8.6.1/bin:$PATH"
+              - PATH="/opt/cabal/2.4/bin:$PATH"
 
           script:
               # boot, configure and build GHC



More information about the ghc-commits mailing list