Files
ci-scripts/travis/build.sh
2019-11-21 14:33:47 +01:00

14 lines
174 B
Bash
Executable File

#!/bin/sh
set -e
# Set VV in .travis.yml to make scripts verbose
[ "$VV" ] && set -x
make -j2 $EXTRA
if [ "$TEST" != "NO" ]
then
make tapfiles
make -s test-results
fi