2016-11-29 21:21:53 -08:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
2017-08-31 17:44:33 -07:00
|
|
|
shippable.py
|
|
|
|
|
2017-03-15 12:17:42 -07:00
|
|
|
echo '{"verified": false, "results": []}' > test/results/bot/ansible-test-failure.json
|
|
|
|
|
2017-10-26 00:21:46 -07:00
|
|
|
if [ "${BASE_BRANCH:-}" ]; then
|
|
|
|
base_branch="origin/${BASE_BRANCH}"
|
|
|
|
else
|
|
|
|
base_branch=""
|
|
|
|
fi
|
2017-05-14 15:04:52 +08:00
|
|
|
# shellcheck disable=SC2086
|
2017-10-26 00:21:46 -07:00
|
|
|
ansible-test compile --failure-ok --color -v --junit --coverage ${CHANGED:+"$CHANGED"} --docker default
|
2017-05-14 15:04:52 +08:00
|
|
|
# shellcheck disable=SC2086
|
2017-10-26 00:21:46 -07:00
|
|
|
ansible-test sanity --failure-ok --color -v --junit --coverage ${CHANGED:+"$CHANGED"} --docker default --docker-keep-git --base-branch "${base_branch}"
|
2017-03-07 19:09:17 -08:00
|
|
|
|
2017-03-15 12:17:42 -07:00
|
|
|
rm test/results/bot/ansible-test-failure.json
|
|
|
|
|
2017-03-14 16:32:21 -07:00
|
|
|
if find test/results/bot/ -mindepth 1 -name '.*' -prune -o -print -quit | grep -q .; then
|
2017-05-14 15:04:52 +08:00
|
|
|
echo "One or more of the above tests reported at least one failure."
|
2017-03-07 19:09:17 -08:00
|
|
|
exit 1
|
|
|
|
fi
|