mirror of
https://github.com/freckle/yesod-auth-oauth2.git
synced 2026-09-02 20:23:50 +02:00
Add a better .travis.yml
- Runs check and sdist, in addition to build/test - Based on https://github.com/hvr/multi-ghc-travis - Tests various combinations of Cabal and GHC (including 7.10) - Tests HEAD versions, but allows failure there
This commit is contained in:
parent
c6fbb15a20
commit
6d547b157c
38
.travis.yml
38
.travis.yml
@ -1,9 +1,37 @@
|
|||||||
language: haskell
|
env:
|
||||||
|
- CABALVER=1.18 GHCVER=7.6.3
|
||||||
|
- CABALVER=1.18 GHCVER=7.8.4
|
||||||
|
- CABALVER=1.22 GHCVER=7.10.1
|
||||||
|
- CABALVER=head GHCVER=head
|
||||||
|
|
||||||
ghc:
|
matrix:
|
||||||
- "7.6"
|
allow_failures:
|
||||||
- "7.8"
|
- env: CABALVER=head GHCVER=head
|
||||||
# - "7.10" not available yet
|
|
||||||
|
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
|
||||||
|
- cabal --version
|
||||||
|
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
|
||||||
|
- travis_retry cabal update
|
||||||
|
- cabal install --only-dependencies --enable-tests --enable-benchmarks
|
||||||
|
|
||||||
|
script:
|
||||||
|
- cabal configure --enable-tests --enable-benchmarks -v2
|
||||||
|
- cabal build
|
||||||
|
- cabal test
|
||||||
|
- cabal check
|
||||||
|
- cabal sdist
|
||||||
|
- export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}') ;
|
||||||
|
cd dist/;
|
||||||
|
if [ -f "$SRC_TGZ" ]; then
|
||||||
|
cabal install --force-reinstalls "$SRC_TGZ";
|
||||||
|
else
|
||||||
|
echo "expected '$SRC_TGZ' not found";
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user