mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
448 B
Bash
18 lines
448 B
Bash
3 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -o pipefail -eux
|
||
|
|
||
|
declare -a args
|
||
|
IFS='/:' read -ra args <<< "$1"
|
||
|
|
||
|
python="${args[1]}"
|
||
|
group="${args[2]}"
|
||
|
|
||
|
target="shippable/galaxy/group${group}/"
|
||
|
|
||
|
stage="${S:-prod}"
|
||
|
|
||
|
# shellcheck disable=SC2086
|
||
|
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
||
|
--remote-terminate always --remote-stage "${stage}" --docker --python "${python}"
|