2019-02-18 22:41:45 +01:00
|
|
|
#!/usr/bin/env bash
|
2017-01-13 03:23:53 +01:00
|
|
|
|
2019-02-18 22:41:45 +01:00
|
|
|
set -o pipefail -eux
|
2017-01-13 03:23:53 +01:00
|
|
|
|
2020-02-24 03:37:26 +01:00
|
|
|
declare -a args
|
|
|
|
IFS='/:' read -ra args <<< "$1"
|
2017-05-14 09:04:52 +02:00
|
|
|
|
2020-02-24 03:37:26 +01:00
|
|
|
platform="${args[0]}"
|
|
|
|
version="${args[1]}"
|
2020-02-24 04:48:53 +01:00
|
|
|
python_version="${args[2]}"
|
2017-01-13 03:23:53 +01:00
|
|
|
|
2020-02-24 04:48:53 +01:00
|
|
|
if [ "${#args[@]}" -gt 3 ]; then
|
|
|
|
target="shippable/${platform}/group${args[3]}/"
|
2020-02-24 03:37:26 +01:00
|
|
|
else
|
|
|
|
target="shippable/${platform}/"
|
|
|
|
fi
|
2017-01-13 03:23:53 +01:00
|
|
|
|
2017-11-29 09:46:08 +01:00
|
|
|
stage="${S:-prod}"
|
|
|
|
provider="${P:-default}"
|
|
|
|
|
2017-05-18 19:37:53 +02:00
|
|
|
# python versions to test in order
|
|
|
|
# all versions run full tests
|
|
|
|
python_versions=(
|
|
|
|
2.7
|
2017-10-26 09:21:46 +02:00
|
|
|
3.6
|
2017-05-18 19:37:53 +02:00
|
|
|
)
|
|
|
|
|
2020-02-24 04:48:53 +01:00
|
|
|
if [ "${python_version}" ]; then
|
|
|
|
# limit tests to a single python version
|
|
|
|
python_versions=("${python_version}")
|
|
|
|
fi
|
|
|
|
|
2020-02-24 03:37:26 +01:00
|
|
|
for python_version in "${python_versions[@]}"; do
|
2017-11-15 02:08:48 +01:00
|
|
|
# terminate remote instances on the final python version tested
|
2020-02-24 03:37:26 +01:00
|
|
|
if [ "${python_version}" = "${python_versions[-1]}" ]; then
|
2017-11-15 02:08:48 +01:00
|
|
|
terminate="always"
|
|
|
|
else
|
|
|
|
terminate="never"
|
|
|
|
fi
|
|
|
|
|
2017-05-18 19:37:53 +02:00
|
|
|
# shellcheck disable=SC2086
|
2018-04-13 01:15:28 +02:00
|
|
|
ansible-test network-integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
2020-02-24 03:37:26 +01:00
|
|
|
--platform "${platform}/${version}" \
|
|
|
|
--docker default --python "${python_version}" \
|
2017-11-29 09:46:08 +01:00
|
|
|
--remote-terminate "${terminate}" --remote-stage "${stage}" --remote-provider "${provider}"
|
2017-05-18 19:37:53 +02:00
|
|
|
done
|