2016-11-30 05:21:53 +00:00
|
|
|
#!/bin/bash -eux
|
|
|
|
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
declare -a args
|
|
|
|
IFS='/:' read -ra args <<< "${TEST}"
|
|
|
|
|
|
|
|
platform="${args[0]}"
|
|
|
|
version="${args[1]}"
|
|
|
|
target="posix/ci/"
|
|
|
|
|
2017-05-12 07:47:28 +00:00
|
|
|
ansible-test integration --color -v --retry-on-error "${target}" --remote "${platform}/${version}" --exclude "posix/ci/cloud/"
|