2016-11-29 21:21:53 -08:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
declare -a args
|
2017-10-03 12:43:46 -07:00
|
|
|
IFS='/:' read -ra args <<< "$1"
|
2016-11-29 21:21:53 -08:00
|
|
|
|
2017-10-03 14:37:05 -07:00
|
|
|
image="${args[1]}"
|
|
|
|
|
|
|
|
if [ "${#args[@]}" -gt 2 ]; then
|
2018-07-23 20:46:22 -07:00
|
|
|
target="shippable/posix/group${args[2]}/"
|
2017-10-03 14:37:05 -07:00
|
|
|
else
|
2018-07-23 20:46:22 -07:00
|
|
|
target="shippable/posix/"
|
2017-10-03 14:37:05 -07:00
|
|
|
fi
|
2016-11-29 21:21:53 -08:00
|
|
|
|
2017-05-14 01:08:42 +08:00
|
|
|
# shellcheck disable=SC2086
|
2018-04-12 16:15:28 -07:00
|
|
|
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
2017-10-03 14:37:05 -07:00
|
|
|
--docker "${image}"
|