2017-01-12 18:23:53 -08:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
2017-05-14 15:04:52 +08:00
|
|
|
# shellcheck disable=SC2086
|
2018-04-12 16:15:28 -07:00
|
|
|
ansible-test network-integration --explain ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} 2>&1 \
|
|
|
|
| { grep ' network-integration: .* (targeted)$' || true; } > /tmp/network.txt
|
2017-05-14 15:04:52 +08:00
|
|
|
|
|
|
|
if [ "${COVERAGE}" ]; then
|
|
|
|
# when on-demand coverage is enabled, force tests to run for all network platforms
|
|
|
|
echo "coverage" > /tmp/network.txt
|
|
|
|
fi
|
2017-01-12 18:23:53 -08:00
|
|
|
|
2018-07-23 20:46:22 -07:00
|
|
|
target="shippable/network/"
|
2017-01-12 18:23:53 -08:00
|
|
|
|
2017-11-29 00:46:08 -08:00
|
|
|
stage="${S:-prod}"
|
|
|
|
provider="${P:-default}"
|
|
|
|
|
2017-05-19 01:37:53 +08:00
|
|
|
# python versions to test in order
|
|
|
|
# all versions run full tests
|
|
|
|
python_versions=(
|
|
|
|
2.7
|
2017-10-26 00:21:46 -07:00
|
|
|
3.6
|
2017-05-19 01:37:53 +08:00
|
|
|
)
|
|
|
|
|
2017-01-12 18:23:53 -08: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-19 01:37:53 +08:00
|
|
|
platforms=(
|
2017-11-22 09:08:31 -08:00
|
|
|
--platform vyos/1.1.8
|
2017-05-19 01:37:53 +08:00
|
|
|
)
|
2017-01-12 18:23:53 -08: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-19 01:37:53 +08:00
|
|
|
platforms=(
|
2017-11-22 09:08:31 -08:00
|
|
|
--platform vyos/1.1.8
|
2017-05-19 01:37:53 +08:00
|
|
|
)
|
2017-01-12 18:23:53 -08:00
|
|
|
fi
|
2017-05-19 01:37:53 +08:00
|
|
|
|
|
|
|
for version in "${python_versions[@]}"; do
|
2017-11-14 17:08:48 -08:00
|
|
|
# terminate remote instances on the final python version tested
|
|
|
|
if [ "${version}" = "${python_versions[-1]}" ]; then
|
|
|
|
terminate="always"
|
|
|
|
else
|
|
|
|
terminate="never"
|
|
|
|
fi
|
|
|
|
|
2017-05-19 01:37:53 +08:00
|
|
|
# shellcheck disable=SC2086
|
2018-04-12 16:15:28 -07: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 00:46:08 -08:00
|
|
|
--remote-terminate "${terminate}" --remote-stage "${stage}" --remote-provider "${provider}"
|
2017-05-19 01:37:53 +08:00
|
|
|
done
|