mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-30 02:13:36 +03:00
9 lines
198 B
Plaintext
9 lines
198 B
Plaintext
|
#!/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
|