vty/ci/travis_ci_script

9 lines
198 B
Plaintext
Raw Normal View History

2014-04-26 22:17:56 +04:00
#!/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