ghc-mod/.travis.yml

45 lines
1.0 KiB
YAML
Raw Normal View History

env:
- GHCVER=7.4.2
- GHCVER=7.6.3
2014-04-18 02:43:06 +00:00
- GHCVER=7.8.2
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update
2014-01-08 11:53:22 +00:00
- sudo apt-get install cabal-install-1.18 ghc-$GHCVER
2014-05-01 01:07:10 +00:00
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/1.18/bin:$PATH
2014-07-03 03:11:42 +00:00
- which ghc
- ghc --version
- which ghci
- ghci --version
- which cabal
- cabal --version
install:
2014-05-01 01:07:10 +00:00
- cabal update
- cabal install happy
2014-01-08 11:53:22 +00:00
- export PATH=$HOME/.cabal/bin:$PATH
- happy --version
2014-05-01 01:07:10 +00:00
- cabal install --only-dependencies --enable-tests
script:
2014-05-01 01:07:10 +00:00
- cabal configure --enable-tests
- cabal build
2014-07-03 11:13:10 +00:00
- ghc-pkg unregister transformers
2014-05-01 01:07:10 +00:00
- cabal test
- cabal check
- cabal sdist
# The following scriptlet checks that the resulting source distribution can be built & installed
2014-05-01 01:07:10 +00:00
- export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}');
cd dist/;
if [ -f "$SRC_TGZ" ]; then
2014-05-01 01:07:10 +00:00
cabal install --enable-tests "$SRC_TGZ";
else
echo "expected '$SRC_TGZ' not found";
exit 1;
fi
matrix:
allow_failures:
- env: GHCVER=head