Shippable (#8)

* Shippable

* build ansible.windows from source

* build ansible.windows from source
This commit is contained in:
John R Barker
2020-03-11 18:46:18 +00:00
committed by GitHub
parent be7e0892b9
commit 337846a1dd
19 changed files with 676 additions and 0 deletions

18
tests/utils/shippable/linux.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env bash
set -o pipefail -eux
declare -a args
IFS='/:' read -ra args <<< "$1"
image="${args[1]}"
if [ "${#args[@]}" -gt 2 ]; then
target="shippable/posix/group${args[2]}/"
else
target="shippable/posix/"
fi
# shellcheck disable=SC2086
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
--docker "${image}"