mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-11-29 16:54:42 +03:00
9 lines
198 B
Bash
Executable File
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
|