diff options
Diffstat (limited to 'test/utils/shippable/osx.sh')
-rwxr-xr-x | test/utils/shippable/osx.sh | 12 |
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}" |