Skip to content

Commit 5eb985f

Browse files
authored
Merge pull request #151 from andreasabel/travis-8.8
CI: test also ghc 8.6 and 8.8 on travis
2 parents 61fab33 + 4a27e29 commit 5eb985f

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@
2626
.cabal-sandbox
2727
.stack-work
2828
cabal.sandbox.config
29+
/src/TAGS

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
# language: haskell
22

3+
# Keep the list of tested GHC versions in sync with `tested-with` in `alex.cabal`.
34
env:
5+
- GHCVER=8.8.2
6+
- GHCVER=8.6.5
47
# - GHCVER=7.0.4
58
- GHCVER=7.4.2
69
- GHCVER=7.6.3
710
- GHCVER=7.8.4
811
- GHCVER=7.10.3
912
- GHCVER=8.0.2
1013
- GHCVER=8.2.2
11-
- GHCVER=8.4.1
14+
- GHCVER=8.4.4
1215

1316
before_install:
1417
- sudo add-apt-repository -y ppa:hvr/ghc

alex.cabal

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,18 @@ description:
2121
category: Development
2222
build-type: Simple
2323

24+
-- Keep the contents of `tested-with` in sync with `env` in `.travis.yml`.
25+
tested-with:
26+
GHC == 7.4.2
27+
GHC == 7.6.3
28+
GHC == 7.8.4
29+
GHC == 7.10.3
30+
GHC == 8.0.2
31+
GHC == 8.2.2
32+
GHC == 8.4.4
33+
GHC == 8.6.5
34+
GHC == 8.8.2
35+
2436
data-dir: data/
2537

2638
data-files:

0 commit comments

Comments
 (0)