[commit: packages/haskeline] ghc-head: Add Travis build file. (70677db)
git at git.haskell.org
git at git.haskell.org
Wed Jan 15 08:28:01 UTC 2014
Repository : ssh://git@git.haskell.org/haskeline
On branch : ghc-head
Link : http://git.haskell.org/packages/haskeline.git/commitdiff/70677db6d5db239a379f14b7284ffef1ceccb0d9
>---------------------------------------------------------------
commit 70677db6d5db239a379f14b7284ffef1ceccb0d9
Author: Judah Jacobson <judah.jacobson at gmail.com>
Date: Sun Nov 17 18:30:54 2013 -0800
Add Travis build file.
>---------------------------------------------------------------
70677db6d5db239a379f14b7284ffef1ceccb0d9
.travis.yml | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..16d4245
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,38 @@
+env:
+ - GHCVER=6.12.3
+ - GHCVER=7.0.1
+ - GHCVER=7.0.2
+ - GHCVER=7.0.3
+ - GHCVER=7.0.4
+ - GHCVER=7.2.1
+ - GHCVER=7.2.2
+ - GHCVER=7.4.1
+ - GHCVER=7.4.2
+ - GHCVER=7.6.1
+ - GHCVER=7.6.2
+ - GHCVER=7.6.3
+
+before_install:
+ - sudo add-apt-repository -y ppa:hvr/ghc
+ - sudo apt-get update
+ - sudo apt-get install cabal-install-1.18 ghc-$GHCVER
+ - export PATH=/opt/ghc/$GHCVER/bin:$PATH
+
+install:
+ - cabal-1.18 update
+ - ghc --version
+
+script:
+ - cabal-1.18 configure -v2
+ - cabal-1.18 build
+ - cabal-1.18 check
+ - cabal-1.18 sdist
+# The following scriptlet checks that the resulting source distribution can be built & installed
+ - export SRC_TGZ=$(cabal-1.18 info . | awk '{print $2 ".tar.gz";exit}') ;
+ cd dist/;
+ if [ -f "$SRC_TGZ" ]; then
+ cabal-1.18 install "$SRC_TGZ";
+ else
+ echo "expected '$SRC_TGZ' not found";
+ exit 1;
+ fi
More information about the ghc-commits
mailing list