2015-07-27 12:00:41 +03:00
|
|
|
language: c
|
2015-03-19 17:50:38 +03:00
|
|
|
|
2015-03-22 05:22:24 +03:00
|
|
|
env:
|
|
|
|
- CABALVER=1.22 GHCVER=7.10.1
|
|
|
|
- CABALVER=head GHCVER=head
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- env: CABALVER=head GHCVER=head
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
|
|
|
|
- travis_retry sudo apt-get update
|
|
|
|
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER
|
|
|
|
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
|
|
|
|
|
|
|
|
install:
|
|
|
|
- cabal --version
|
|
|
|
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
|
|
|
|
- travis_retry cabal update
|
2015-07-27 12:00:41 +03:00
|
|
|
- cabal install --only-dependencies --enable-tests
|
2015-03-22 05:22:24 +03:00
|
|
|
|
|
|
|
script:
|
2015-08-02 10:33:26 +03:00
|
|
|
- cabal configure --enable-tests --enable-coverage -v2
|
2015-03-22 05:22:24 +03:00
|
|
|
- cabal build
|
2015-08-02 10:33:26 +03:00
|
|
|
- cabal test --show-details=always
|
2015-08-08 21:50:29 +03:00
|
|
|
--test-option=--threads=2
|
|
|
|
--test-option=--maximum-generated-tests=500
|
2015-03-22 05:22:24 +03:00
|
|
|
- cabal sdist
|
2015-07-30 21:38:47 +03:00
|
|
|
- cabal haddock
|
2015-03-22 05:22:24 +03:00
|
|
|
|
2015-08-02 10:33:26 +03:00
|
|
|
after_script:
|
|
|
|
- cabal install hpc-coveralls
|
|
|
|
- export PATH=~/.cabal/bin:$PATH
|
|
|
|
- hpc-coveralls --coverage-mode=StrictlyFullLines
|
|
|
|
--exclude-dir=tests
|
|
|
|
--exclude-dir=oldtests
|
|
|
|
--exclude-dir=benchmarks
|
2015-08-03 10:23:52 +03:00
|
|
|
tests old-tests
|
2015-08-02 10:33:26 +03:00
|
|
|
|
2015-07-27 12:00:41 +03:00
|
|
|
notifications:
|
|
|
|
email: false
|