[commit: packages/hoopl] master: Add Travis-CI `.travis.yml` script (0f23441)

git at git.haskell.org git at git.haskell.org
Fri Oct 25 06:59:40 UTC 2013


Repository : ssh://git@git.haskell.org/hoopl

On branch  : master
Link       : http://git.haskell.org/packages/hoopl.git/commitdiff/0f2344130af9c56d8fd5d6d3651644f1b341e79b

>---------------------------------------------------------------

commit 0f2344130af9c56d8fd5d6d3651644f1b341e79b
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date:   Fri Oct 25 08:58:47 2013 +0200

    Add Travis-CI `.travis.yml` script
    
    Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>


>---------------------------------------------------------------

0f2344130af9c56d8fd5d6d3651644f1b341e79b
 .travis.yml |   40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..4a3071d
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,40 @@
+env:
+ - GHCVER=7.0.1
+ - GHCVER=7.0.2
+ - GHCVER=7.0.3
+ - GHCVER=7.0.4
+ - GHCVER=7.2.2
+ - GHCVER=7.4.1
+ - GHCVER=7.4.2
+ - GHCVER=7.6.1
+ - GHCVER=7.6.2
+ - GHCVER=7.6.3
+ - GHCVER=head
+
+matrix:
+  allow_failures:
+   - env: GHCVER=head
+
+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
+ - 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