mirror of
https://github.com/ilyakooo0/vty.git
synced 2024-12-02 08:53:43 +03:00
92ff677079
Not significantly different that jenkins practices.
10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
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
|