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