Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Commit 3c7c665

Browse files
Update ghc versions in CI.
1 parent 0b848cd commit 3c7c665

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ sudo: false
44

55
matrix:
66
include:
7-
- env: CABALVER=1.22 GHCVER=7.8.4
8-
addons: {apt: {packages: [cabal-install-1.22,ghc-7.8.4], sources: [hvr-ghc]}}
9-
- env: CABALVER=1.22 GHCVER=7.10.3
10-
addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.3],sources: [hvr-ghc]}}
11-
- env: CABALVER=1.24 GHCVER=8.0.2
12-
addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.2], sources: [hvr-ghc]}}
7+
- env: CABALVER=2.4 GHCVER=8.4.4
8+
addons: {apt: {packages: [cabal-install-2.4,ghc-8.4.4], sources: [hvr-ghc]}}
9+
- env: CABALVER=2.4 GHCVER=8.6.5
10+
addons: {apt: {packages: [cabal-install-2.4,ghc-8.6.5],sources: [hvr-ghc]}}
11+
- env: CABALVER=2.4 GHCVER=8.8.4
12+
addons: {apt: {packages: [cabal-install-2.4,ghc-8.8.4], sources: [hvr-ghc]}}
1313

1414
cache:
1515
directories:
@@ -19,16 +19,16 @@ before_install:
1919
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:~/.cabal/bin:$PATH
2020
- ghc --version
2121
- cabal --version
22-
- cabal update
22+
- cabal v1-update
2323
# workaround for https://ghc.haskell.org/trac/ghc/ticket/9221
2424
# taken from https://github.com/hvr/multi-ghc-travis/blob/0fa68f78c2b1b059f904c9abc85510a3bb4f57e2/README.md
2525
- sed -i 's/^jobs:/-- jobs:/' $HOME/.cabal/config
2626

2727
install:
2828
- git clone https://github.com/haskell-distributed/network-transport-tests.git
29-
- cabal sandbox init
30-
- cabal sandbox add-source network-transport-tests
31-
- cabal install --only-dependencies --enable-tests
29+
- cabal v1-sandbox init
30+
- cabal v1-sandbox add-source network-transport-tests
31+
- cabal v1-install --only-dependencies --enable-tests
3232

3333
script:
34-
- cabal test --show-details=streaming
34+
- cabal v1-test --show-details=streaming

network-transport-tcp.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Homepage: http://haskell-distributed.github.com
1212
Bug-Reports: https://github.com/haskell-distributed/network-transport-tcp/issues
1313
Synopsis: TCP instantiation of Network.Transport
1414
Description: TCP instantiation of Network.Transport
15-
Tested-With: GHC==7.6.3 GHC==7.8.4 GHC==7.10.3
15+
Tested-With: GHC==8.4.4 GHC==8.6.5 GHC==8.8.4
1616
Category: Network
1717
extra-source-files: ChangeLog
1818

0 commit comments

Comments
 (0)