vty/ci/travis_ci_script
2014-04-26 11:17:56 -07:00

9 lines
198 B
Bash
Executable File

#!/bin/bash
set -ex
if [[ "${GHCVER}" > "7.2.2" ]] ; then
cabal configure --enable-tests && cabal build && cabal test
else
echo "Skipping tests on ${GHCVER}"
cabal configure && cabal build
fi