summaryrefslogtreecommitdiffstats
path: root/test/utils/shippable/cloud.sh
blob: 6695d8a816a3e59bb94e8faeaaf6df468c2b4f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash -eux

set -o pipefail

declare -a args
IFS='/:' read -ra args <<< "${TEST}"

image="ansible/ansible:${args[1]}"
target="posix/ci/cloud/group${args[2]}/"

# shellcheck disable=SC2086
ansible-test integration --color -v --retry-on-error "${target}" --docker "${image}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} \
    --changed-all-target "${target}smoketest/"