2017-05-03 02:24:05 +02:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
declare -a args
|
2017-10-03 21:43:46 +02:00
|
|
|
IFS='/:' read -ra args <<< "$1"
|
2017-05-03 02:24:05 +02:00
|
|
|
|
2017-10-03 23:37:05 +02:00
|
|
|
image="${args[1]}"
|
2017-10-26 09:21:46 +02:00
|
|
|
python="${args[2]}"
|
|
|
|
target="posix/ci/cloud/group${args[3]}/"
|
2017-05-03 02:24:05 +02:00
|
|
|
|
2018-03-10 01:17:29 +01:00
|
|
|
stage="${S:-prod}"
|
|
|
|
|
2017-05-13 19:08:42 +02:00
|
|
|
# shellcheck disable=SC2086
|
2018-04-13 01:15:28 +02:00
|
|
|
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
2018-03-10 01:17:29 +01:00
|
|
|
--remote-terminate always --remote-stage "${stage}" \
|
2017-10-26 09:21:46 +02:00
|
|
|
--docker "${image}" --python "${python}" --changed-all-target "${target}smoketest/"
|