[commit: packages/pretty] large_docs, master, moretests: add travis support (84edff6)

git at git.haskell.org git at git.haskell.org
Fri Jan 23 22:48:47 UTC 2015


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

On branches: large_docs,master,moretests
Link       : http://git.haskell.org/packages/pretty.git/commitdiff/84edff6bc69b398bedab65701418e7cdd2a061e8

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

commit 84edff6bc69b398bedab65701418e7cdd2a061e8
Author: David Terei <code at davidterei.com>
Date:   Tue Sep 16 23:47:03 2014 -0700

    add travis support


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

84edff6bc69b398bedab65701418e7cdd2a061e8
 .travis.yml | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..c4cdfd4
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,39 @@
+env:
+  - GHCVER=7.4.1
+  - GHCVER=7.4.2
+  - GHCVER=7.6.1
+  - GHCVER=7.6.2
+  - GHCVER=7.6.3
+  - GHCVER=7.8.1
+  - GHCVER=7.8.2
+  - GHCVER=7.8.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