From 92ff67707960a0790f45de98db51328d897fd0c0 Mon Sep 17 00:00:00 2001 From: Corey O'Connor Date: Fri, 13 Dec 2013 19:34:41 -0800 Subject: [PATCH] fix travis ci entry point Not significantly different that jenkins practices. --- ci/travis_ci_build_and_test | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/travis_ci_build_and_test b/ci/travis_ci_build_and_test index 3d858d7..146ba3a 100755 --- a/ci/travis_ci_build_and_test +++ b/ci/travis_ci_build_and_test @@ -1,8 +1,9 @@ #!/bin/bash set -ex -cabal configure --enable-tests && cabal build if [[ "${GHCVER}" > "7.4.2" ]] ; then + cabal configure --enable-tests && cabal build cabal test else + cabal configure && cabal build echo "Skipping tests on ${GHCVER}" fi