From 8930d7c983a31257d60d7d86c06ab7862f89b8ee Mon Sep 17 00:00:00 2001 From: "Daniel P. Wright" Date: Thu, 23 Oct 2014 10:11:49 +0900 Subject: [PATCH] Manually specify Travis build matrix Build the normal build with GHC versions 7.4, 7.6 and 7.8, and the NoUpperBounds build with GHC version 7.8 only. --- .travis.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6b313c4..15d0bd4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,8 @@ language: haskell -ghc: - - 7.8 - - 7.6 - - 7.4 +matrix: + include: + - ghc: 7.8 + - ghc: 7.6 + - ghc: 7.3 + - ghc: 7.8 + install: cabal install --only-dependencies --enable-tests -f NoUpperBounds