summaryrefslogtreecommitdiff
path: root/test/utils/shippable/osx.sh
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2016-11-29 21:21:53 -0800
committerGitHub <noreply@github.com>2016-11-29 21:21:53 -0800
commit6bbd92e422fcba608cd00ddd38a4c1f03dca301a (patch)
tree6cd5b7cacb78ddadb41ffe45b5f4ea9c7a1cac79 /test/utils/shippable/osx.sh
parentd95eac16ebf2ab8293d91adf39763eead4bf0a2e (diff)
downloadansible-6bbd92e422fcba608cd00ddd38a4c1f03dca301a.tar.gz
Initial ansible-test implementation. (#18556)
Diffstat (limited to 'test/utils/shippable/osx.sh')
-rwxr-xr-xtest/utils/shippable/osx.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/utils/shippable/osx.sh b/test/utils/shippable/osx.sh
new file mode 100755
index 0000000000..53b57b152b
--- /dev/null
+++ b/test/utils/shippable/osx.sh
@@ -0,0 +1,12 @@
+#!/bin/bash -eux
+
+set -o pipefail
+
+declare -a args
+IFS='/:' read -ra args <<< "${TEST}"
+
+platform="${args[0]}"
+version="${args[1]}"
+target="posix/ci/"
+
+ansible-test integration --color -v --retry-on-error "${target}" --remote "${platform}/${version}"