ansible/test/utils/shippable/cloud.sh

14 lines
376 B
Bash
Raw Normal View History

#!/bin/bash -eux
set -o pipefail
declare -a args
IFS='/:' read -ra args <<< "${TEST}"
image="ansible/ansible:${args[1]}"
2017-09-02 01:47:01 +02:00
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"} \
2017-09-02 01:47:01 +02:00
--changed-all-target "${target}smoketest/"