Enable first network tests on Shippable. (#20208)
This commit is contained in:
parent
4bfed06514
commit
f534573dcf
4 changed files with 32 additions and 0 deletions
|
@ -20,6 +20,8 @@ matrix:
|
||||||
- env: TEST=windows/2
|
- env: TEST=windows/2
|
||||||
- env: TEST=windows/3
|
- env: TEST=windows/3
|
||||||
|
|
||||||
|
- env: TEST=network
|
||||||
|
|
||||||
- env: TEST=linux/centos6/1
|
- env: TEST=linux/centos6/1
|
||||||
- env: TEST=linux/centos7/1
|
- env: TEST=linux/centos7/1
|
||||||
- env: TEST=linux/fedora24/1
|
- env: TEST=linux/fedora24/1
|
||||||
|
|
|
@ -1 +1,2 @@
|
||||||
network/basics
|
network/basics
|
||||||
|
network/ci
|
||||||
|
|
5
test/runner/requirements/network-integration.txt
Normal file
5
test/runner/requirements/network-integration.txt
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
jinja2
|
||||||
|
junit-xml
|
||||||
|
paramiko
|
||||||
|
pycrypto
|
||||||
|
pyyaml
|
24
test/utils/shippable/network.sh
Executable file
24
test/utils/shippable/network.sh
Executable file
|
@ -0,0 +1,24 @@
|
||||||
|
#!/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."
|
||||||
|
|
||||||
|
ansible-test network-integration --color -v --retry-on-error "${target}" --requirements \
|
||||||
|
--platform vyos/1.1.0 \
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "No changes requiring integration tests specific to networking were detected."
|
||||||
|
echo "Running network integration tests for a single platform only."
|
||||||
|
|
||||||
|
ansible-test network-integration --color -v --retry-on-error "${target}" --requirements \
|
||||||
|
--platform vyos/1.1.0
|
||||||
|
fi
|
Loading…
Reference in a new issue