mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
5 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -o pipefail -eux
|
||
|
|
||
|
declare -a args
|
||
|
IFS='/:' read -ra args <<< "$1"
|
||
|
|
||
|
platform="${args[0]}"
|
||
|
version="${args[1]}"
|
||
|
python_version="${args[2]}"
|
||
|
|
||
|
target="shippable/${platform}/incidental/"
|
||
|
|
||
|
stage="${S:-prod}"
|
||
|
provider="${P:-default}"
|
||
|
|
||
|
# python versions to test in order
|
||
|
# all versions run full tests
|
||
4 years ago
|
IFS=' ' read -r -a python_versions <<< \
|
||
3 years ago
|
"$(PYTHONPATH="${PWD}/test/lib" python -c 'from ansible_test._internal import constants; print(" ".join(constants.CONTROLLER_PYTHON_VERSIONS))')"
|
||
5 years ago
|
|
||
|
if [ "${python_version}" ]; then
|
||
|
# limit tests to a single python version
|
||
|
python_versions=("${python_version}")
|
||
|
fi
|
||
|
|
||
|
for python_version in "${python_versions[@]}"; do
|
||
|
# terminate remote instances on the final python version tested
|
||
|
if [ "${python_version}" = "${python_versions[-1]}" ]; then
|
||
|
terminate="always"
|
||
|
else
|
||
|
terminate="never"
|
||
|
fi
|
||
|
|
||
|
# shellcheck disable=SC2086
|
||
|
ansible-test network-integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
||
|
--platform "${platform}/${version}" \
|
||
|
--docker default --python "${python_version}" \
|
||
|
--remote-terminate "${terminate}" --remote-stage "${stage}" --remote-provider "${provider}"
|
||
|
done
|