38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
set -o pipefail -eux
|
|
|
|
declare -a args
|
|
IFS='/:' read -ra args <<< "$1"
|
|
|
|
platform="${args[0]}"
|
|
version="${args[1]}"
|
|
target="shippable/posix/"
|
|
|
|
if [ "${#args[@]}" -gt 2 ]; then
|
|
target="shippable/posix/group${args[2]}/"
|
|
else
|
|
target="shippable/posix/"
|
|
fi
|
|
|
|
force_python=""
|
|
if [[ "${version}" =~ -pypi-latest$ ]]; then
|
|
version="${version/-pypi-latest}"
|
|
echo 'force_docker_sdk_for_python_pypi: true' >> tests/integration/interation_config.yml
|
|
if [ "${platform}" == "rhel" ] && [[ "${version}" =~ ^8\. ]]; then
|
|
# Use Python 3.8 on RHEL 8.x - TODO: this might be no longer necessary for high enough minor version! Check!
|
|
force_python="--python 3.8"
|
|
fi
|
|
fi
|
|
|
|
stage="${S:-prod}"
|
|
provider="${P:-default}"
|
|
|
|
if [ "${platform}" == "rhel" ] && [[ "${version}" =~ ^8\. ]]; then
|
|
echo "pynacl >= 1.4.0, < 1.5.0; python_version == '3.6'" >> tests/utils/constraints.txt
|
|
fi
|
|
|
|
# shellcheck disable=SC2086
|
|
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
|
--remote "${platform}/${version}" --remote-terminate always --remote-stage "${stage}" --remote-provider "${provider}" ${force_python}
|