summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2020-03-10 10:29:50 -0700
committerMatt Clay <matt@mystile.com>2020-03-10 13:49:54 -0700
commitf284ce8733643e53496b3c9caf28aae713ff4331 (patch)
tree9fba091e2cb0a1770489f144f8ef136abb143fab
parent8fffbecc815576b29bf4f7da1cac7d8eaab9d2a0 (diff)
downloadansible-f284ce8733643e53496b3c9caf28aae713ff4331.tar.gz
Remove unused Shippable scripts.
l---------test/utils/shippable/aws.sh1
l---------test/utils/shippable/azure.sh1
l---------test/utils/shippable/cs.sh1
l---------test/utils/shippable/hcloud.sh1
l---------test/utils/shippable/ios.sh1
-rwxr-xr-xtest/utils/shippable/network.sh46
l---------test/utils/shippable/tower.sh1
l---------test/utils/shippable/vcenter.sh1
l---------test/utils/shippable/vyos.sh1
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