Skip to content

Commit e19f0ee

Browse files
committed
Update travis script a bit
1 parent 2cd57eb commit e19f0ee

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.travis.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ env:
2121
- CABALVER=1.18 GHCVER=7.6.3
2222
# - CABALVER=1.18 GHCVER=7.8.1
2323
# - CABALVER=1.18 GHCVER=7.8.2
24-
- CABALVER=1.18 GHCVER=7.8.3
25-
- CABALVER=1.22 GHCVER=7.10.1
24+
- CABALVER=1.18 GHCVER=7.8.4
25+
- CABALVER=1.22 GHCVER=7.10.3
2626
- CABALVER=1.24 GHCVER=8.0.1
2727
# - CABALVER=head GHCVER=head
2828
# - HPVER=2013.2.0.0
@@ -115,8 +115,9 @@ script:
115115
# Try to compile tests and benchmarks, run tests
116116
# For some reason doesn't work with old cabal
117117
#
118-
# TODO: don't build tests with cabal 1.24 (ghc 8.0) yet
119-
- if [ ! $CABALVER = "1.16" -a ! $CABALVER = "1.24" ]; then
118+
# Disable tests on GHC 7.6.3 and 7.8.4, as there's something weird happening
119+
# because of -inplace and globally installed hashable
120+
- if [ ! $CABALVER = "1.16" -a ! $GHCVER = "7.6.3" -a ! $GHCVER = "7.8.4" ]; then
120121
cabal install HUnit QuickCheck criterion random siphash test-framework test-framework-hunit test-framework-quickcheck2;
121122
cabal configure -v2 --enable-tests --enable-benchmarks;
122123
cabal test;

0 commit comments

Comments
 (0)