open-nomad/scripts/travis.sh

22 lines
407 B
Bash
Raw Normal View History

2017-11-02 23:37:46 +00:00
#!/bin/bash
2016-08-19 23:32:41 +00:00
set -e
export PING_SLEEP=60
bash -c "while true; do echo \$(date) - building ...; sleep $PING_SLEEP; done" &
PING_LOOP_PID=$!
trap 'kill ${PING_LOOP_PID}' EXIT HUP INT QUIT TERM
2016-08-17 22:18:37 +00:00
2017-11-02 23:37:46 +00:00
if [ "$RUN_STATIC_CHECKS" ]; then
2017-10-24 17:49:53 +00:00
make check
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
2017-10-24 17:49:53 +00:00
make checkscripts
fi
fi
NOMAD_SLOW_TEST=1 make test
TEST_OUTPUT=$?
kill $PING_LOOP_PID
exit $TEST_OUTPUT