diff options
author | Alp Mestanogullari <alpmestan@gmail.com> | 2018-10-09 16:33:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 16:33:22 +0200 |
commit | db3dbb61452591fcbc91738f6754e419b594ab8c (patch) | |
tree | 90f588b06efe333420984a6eb10ddc370f871879 | |
parent | 5e432d4aa47fc4311276c4442e4542ba2febec5e (diff) | |
parent | 051564be1f98351dc7f2cdbd2390c9f0508f21bc (diff) | |
download | haskell-db3dbb61452591fcbc91738f6754e419b594ab8c.tar.gz |
Merge pull request #700 from snowleopard/alp/ghc-versions-ci
update GHC versions used on travis
-rw-r--r-- | .travis.yml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml index 3620e5f39d..f670784cb5 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 |