Skip to content

Commit 7ef2715

Browse files
committed
Add ghc-8.0.1 to travis matrix
1 parent 1955c5a commit 7ef2715

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,25 @@ sudo: false
33
language: c
44

55
env:
6-
- GHCVER=7.8.4
7-
- GHCVER=7.10.2
6+
- GHCVER=7.8.4 CABALVER=1.22
7+
- GHCVER=7.10.3 CABALVER=1.22
8+
- GHCVER=8.0.1 CABALVER=1.24
89

910
addons:
1011
apt:
1112
sources:
1213
- hvr-ghc
1314
packages:
1415
- ghc-7.8.4
15-
- ghc-7.10.2
16+
- ghc-7.10.3
17+
- ghc-8.0.1
1618
- cabal-install-1.22
19+
- cabal-install-1.24
1720
- libgmp-dev
1821

1922
install:
2023
- (mkdir -p $HOME/.local/bin && cd $HOME/.local/bin && wget https://zalora-public.s3.amazonaws.com/tinc && chmod +x tinc)
21-
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.22/bin:$PATH
24+
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
2225
- ghc --version
2326
- cabal --version
2427
- travis_retry cabal update

servant-mock/servant-mock.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library
2929
http-types >= 0.8 && <0.10,
3030
servant == 0.7.*,
3131
servant-server == 0.7.*,
32-
transformers >= 0.3 && <0.5,
32+
transformers >= 0.3 && <0.6,
3333
QuickCheck >= 2.7 && <2.9,
3434
wai >= 3.0 && <3.3
3535
hs-source-dirs: src

servant/servant.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ library
4949
Servant.Utils.Links
5050
Servant.Utils.Enter
5151
build-depends:
52-
base >= 4.7 && < 4.9
52+
base >= 4.7 && < 4.10
5353
, base-compat >= 0.9
5454
, aeson >= 0.7
5555
, attoparsec >= 0.12

0 commit comments

Comments
 (0)