diff options
author | Matt Clay <matt@mystile.com> | 2020-03-10 18:29:50 +0100 |
---|---|---|
committer | Matt Martz <matt@sivel.net> | 2020-03-23 17:14:21 +0100 |
commit | fb3e6d6b00dd9cbf7dbac4ff448c0c28ee585432 (patch) | |
tree | 9fba091e2cb0a1770489f144f8ef136abb143fab /test | |
parent | Fix ansible-test handling of no Python coverage. (diff) | |
download | ansible-fb3e6d6b00dd9cbf7dbac4ff448c0c28ee585432.tar.xz ansible-fb3e6d6b00dd9cbf7dbac4ff448c0c28ee585432.zip |
Remove unused Shippable scripts.
Diffstat (limited to 'test')
l--------- | test/utils/shippable/aws.sh | 1 | ||||
l--------- | test/utils/shippable/azure.sh | 1 | ||||
l--------- | test/utils/shippable/cs.sh | 1 | ||||
l--------- | test/utils/shippable/hcloud.sh | 1 | ||||
l--------- | test/utils/shippable/ios.sh | 1 | ||||
-rwxr-xr-x | test/utils/shippable/network.sh | 46 | ||||
l--------- | test/utils/shippable/tower.sh | 1 | ||||
l--------- | test/utils/shippable/vcenter.sh | 1 | ||||
l--------- | test/utils/shippable/vyos.sh | 1 |
9 files changed, 0 insertions, 54 deletions
diff --git a/test/utils/shippable/aws.sh b/test/utils/shippable/aws.sh deleted file mode 120000 index 700ad3edcf..0000000000 --- a/test/utils/shippable/aws.sh +++ /dev/null @@ -1 +0,0 @@ -cloud.sh
\ No newline at end of file diff --git a/test/utils/shippable/azure.sh b/test/utils/shippable/azure.sh deleted file mode 120000 index 700ad3edcf..0000000000 --- a/test/utils/shippable/azure.sh +++ /dev/null @@ -1 +0,0 @@ -cloud.sh
\ No newline at end of file diff --git a/test/utils/shippable/cs.sh b/test/utils/shippable/cs.sh deleted file mode 120000 index 700ad3edcf..0000000000 --- a/test/utils/shippable/cs.sh +++ /dev/null @@ -1 +0,0 @@ -cloud.sh
\ No newline at end of file diff --git a/test/utils/shippable/hcloud.sh b/test/utils/shippable/hcloud.sh deleted file mode 120000 index 700ad3edcf..0000000000 --- a/test/utils/shippable/hcloud.sh +++ /dev/null @@ -1 +0,0 @@ -cloud.sh
\ No newline at end of file diff --git a/test/utils/shippable/ios.sh b/test/utils/shippable/ios.sh deleted file mode 120000 index cad3e41b70..0000000000 --- a/test/utils/shippable/ios.sh +++ /dev/null @@ -1 +0,0 @@ -network.sh
\ No newline at end of file diff --git a/test/utils/shippable/network.sh b/test/utils/shippable/network.sh deleted file mode 100755 index 35a0bff59d..0000000000 --- a/test/utils/shippable/network.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env bash - -set -o pipefail -eux - -declare -a args -IFS='/:' read -ra args <<< "$1" - -platform="${args[0]}" -version="${args[1]}" -python_version="${args[2]}" - -if [ "${#args[@]}" -gt 3 ]; then - target="shippable/${platform}/group${args[3]}/" -else - target="shippable/${platform}/" -fi - -stage="${S:-prod}" -provider="${P:-default}" - -# python versions to test in order -# all versions run full tests -python_versions=( - 2.7 - 3.6 -) - -if [ "${python_version}" ]; then - # limit tests to a single python version - python_versions=("${python_version}") -fi - -for python_version in "${python_versions[@]}"; do - # terminate remote instances on the final python version tested - if [ "${python_version}" = "${python_versions[-1]}" ]; then - terminate="always" - else - terminate="never" - fi - - # shellcheck disable=SC2086 - ansible-test network-integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \ - --platform "${platform}/${version}" \ - --docker default --python "${python_version}" \ - --remote-terminate "${terminate}" --remote-stage "${stage}" --remote-provider "${provider}" -done diff --git a/test/utils/shippable/tower.sh b/test/utils/shippable/tower.sh deleted file mode 120000 index 700ad3edcf..0000000000 --- a/test/utils/shippable/tower.sh +++ /dev/null @@ -1 +0,0 @@ -cloud.sh
\ No newline at end of file diff --git a/test/utils/shippable/vcenter.sh b/test/utils/shippable/vcenter.sh deleted file mode 120000 index 700ad3edcf..0000000000 --- a/test/utils/shippable/vcenter.sh +++ /dev/null @@ -1 +0,0 @@ -cloud.sh
\ No newline at end of file diff --git a/test/utils/shippable/vyos.sh b/test/utils/shippable/vyos.sh deleted file mode 120000 index cad3e41b70..0000000000 --- a/test/utils/shippable/vyos.sh +++ /dev/null @@ -1 +0,0 @@ -network.sh
\ No newline at end of file |