forked from haskell-hvr/packunused
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[skip ci]
- Loading branch information
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# NB: don't set `language: haskell` here | ||
|
||
# See also https://github.com/hvr/multi-ghc-travis for more information | ||
env: | ||
- GHCVER=7.4.2 CABALVER=1.16 | ||
- GHCVER=7.6.3 CABALVER=1.16 | ||
- GHCVER=7.8.2 CABALVER=1.18 | ||
- GHCVER=head CABALVER=1.20 | ||
|
||
matrix: | ||
allow_failures: | ||
- env: GHCVER=head CABALVER=1.20 | ||
|
||
# Note: the distinction between `before_install` and `install` is not | ||
# important. | ||
before_install: | ||
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc | ||
- travis_retry sudo apt-get update | ||
- travis_retry sudo apt-get install happy-1.19.3 alex-3.1.3 cabal-install-$CABALVER ghc-$GHCVER | ||
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:/opt/alex/3.1.3/bin:/opt/happy/1.19.3/bin:$PATH | ||
- cabal --version | ||
|
||
install: | ||
- travis_retry cabal update | ||
- cabal install --only-dependencies | ||
|
||
# Here starts the actual work to be performed for the package under | ||
# test; any command which exits with a non-zero exit code causes the | ||
# build to fail. | ||
script: | ||
# -v2 provides useful information for debugging | ||
- cabal configure -v2 | ||
|
||
# this builds all libraries and executables | ||
# (including tests/benchmarks) | ||
- cabal build | ||
|
||
# tests that a source-distribution can be generated | ||
- cabal sdist | ||
|
||
# check that the generated source-distribution can be built & installed | ||
- 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 | ||
|
||
# EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
`packunused` [![Build Status](https://travis-ci.org/hvr/packunused.svg?branch=master)](https://travis-ci.org/hvr/packunused) | ||
============ | ||
|
||
See http://hackage.haskell.org/package/packunused for documentation |