mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
27 lines
975 B
Bash
Executable file
27 lines
975 B
Bash
Executable file
#!/bin/bash -eux
|
|
|
|
set -o pipefail
|
|
|
|
ansible-test network-integration --explain 2>&1 | { grep ' network-integration: .* (targeted)$' || true; } > /tmp/network.txt
|
|
|
|
target="network/ci/"
|
|
|
|
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."
|
|
|
|
# shellcheck disable=SC2086
|
|
ansible-test network-integration --color -v --retry-on-error "${target}" --requirements ${COVERAGE:+"$COVERAGE"} \
|
|
--platform vyos/1.1.0 \
|
|
--platform ios/csr1000v \
|
|
|
|
else
|
|
echo "No changes requiring integration tests specific to networking were detected."
|
|
echo "Running network integration tests for a single platform only."
|
|
|
|
# shellcheck disable=SC2086
|
|
ansible-test network-integration --color -v --retry-on-error "${target}" --requirements ${COVERAGE:+"$COVERAGE"} \
|
|
--platform vyos/1.1.0
|
|
fi
|