diff options
Diffstat (limited to 'test/utils/shippable/freebsd.sh')
-rwxr-xr-x | test/utils/shippable/freebsd.sh | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/test/utils/shippable/freebsd.sh b/test/utils/shippable/freebsd.sh index abd1bb2a9f..603b1a08c4 100755 --- a/test/utils/shippable/freebsd.sh +++ b/test/utils/shippable/freebsd.sh @@ -7,8 +7,14 @@ IFS='/:' read -ra args <<< "$1" platform="${args[0]}" version="${args[1]}" -target="posix/ci/group${args[2]}/" + +if [ "${#args[@]}" -gt 2 ]; then + target="posix/ci/group${args[2]}/" +else + target="posix/ci/" +fi # shellcheck disable=SC2086 ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \ - --remote "${platform}/${version}" --remote-terminate always + --exclude "posix/ci/cloud/" \ + --remote "${platform}/${version}" --remote-terminate always |