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
|
|
|
|
2017-05-14 09:04:52 +02:00
|
|
|
# shellcheck disable=SC2086
|
2019-07-17 23:46:37 +02:00
|
|
|
ansible-test network-integration --explain ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} > /tmp/explain.txt 2>&1 || { cat /tmp/explain.txt && false; }
|
|
|
|
{ grep ' network-integration: .* (targeted)$' /tmp/explain.txt || true; } > /tmp/network.txt
|
2017-05-14 09:04:52 +02:00
|
|
|
|
2019-03-11 23:13:09 +01:00
|
|
|
if [ "${COVERAGE}" == "--coverage" ]; then
|
2017-05-14 09:04:52 +02:00
|
|
|
# when on-demand coverage is enabled, force tests to run for all network platforms
|
|
|
|
echo "coverage" > /tmp/network.txt
|
|
|
|
fi
|
2017-01-13 03:23:53 +01:00
|
|
|
|
2018-07-24 05:46:22 +02:00
|
|
|
target="shippable/network/"
|
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
|
|
|
)
|
|
|
|
|
2017-01-13 03:23:53 +01:00
|
|
|
if [ -s /tmp/network.txt ]; then
|
|
|
|
echo "Detected changes requiring integration tests specific to networking:"
|
|
|
|
cat /tmp/network.txt
|
|
|
|
|
|
|
|
echo "Running network integration tests for multiple platforms concurrently."
|
|
|
|
|
2017-05-18 19:37:53 +02:00
|
|
|
platforms=(
|
2017-11-22 18:08:31 +01:00
|
|
|
--platform vyos/1.1.8
|
2017-05-18 19:37:53 +02:00
|
|
|
)
|
2017-01-13 03:23:53 +01:00
|
|
|
else
|
|
|
|
echo "No changes requiring integration tests specific to networking were detected."
|
|
|
|
echo "Running network integration tests for a single platform only."
|
|
|
|
|
2017-05-18 19:37:53 +02:00
|
|
|
platforms=(
|
2017-11-22 18:08:31 +01:00
|
|
|
--platform vyos/1.1.8
|
2017-05-18 19:37:53 +02:00
|
|
|
)
|
2017-01-13 03:23:53 +01:00
|
|
|
fi
|
2017-05-18 19:37:53 +02:00
|
|
|
|
|
|
|
for version in "${python_versions[@]}"; do
|
2017-11-15 02:08:48 +01:00
|
|
|
# terminate remote instances on the final python version tested
|
|
|
|
if [ "${version}" = "${python_versions[-1]}" ]; then
|
|
|
|
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"} \
|
|
|
|
"${platforms[@]}" \
|
|
|
|
--docker default --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
|