haskell-generate/.travis.yml
2013-12-23 14:06:57 +01:00

24 lines
579 B
YAML

env:
- GHCVER=7.4.2 CABALVER=1.16
- GHCVER=7.6.3 CABALVER=1.18
- GHCVER=head CABALVER=1.18
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update
- sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER hlint
- cabal-$CABALVER update
- cabal-$CABALVER install happy -j
- export PATH=/opt/ghc/$GHCVER/bin:~/.cabal/bin:$PATH
install:
- cabal-$CABALVER install --only-dependencies --enable-tests --enable-benchmarks -j
script:
- travis/script.sh
- hlint src
matrix:
allow_failures:
- env: GHCVER=head CABALVER=1.18
fast_finish: true