19 lines
511 B
Bash
19 lines
511 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -o pipefail -eux
|
||
|
|
||
|
declare -a args
|
||
|
IFS='/:' read -ra args <<< "$1"
|
||
|
|
||
|
platform="${args[0]}"
|
||
|
version="${args[1]}"
|
||
|
|
||
|
target="shippable/posix/incidental/"
|
||
|
|
||
|
stage="${S:-prod}"
|
||
|
provider="${P:-default}"
|
||
|
|
||
|
# shellcheck disable=SC2086
|
||
|
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
||
|
--remote "${platform}/${version}" --remote-terminate always --remote-stage "${stage}" --remote-provider "${provider}" \
|