summaryrefslogtreecommitdiff
path: root/test/utils/shippable/linux.sh
blob: dcebb9ee97e2ebc896de491aa8b1ed4600fca442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash -eux

set -o pipefail

declare -a args
IFS='/:' read -ra args <<< "$1"

image="${args[1]}"

if [ "${#args[@]}" -gt 2 ]; then
    target="posix/ci/group${args[2]}/"
else
    target="posix/ci/"
fi

# shellcheck disable=SC2086
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
    --exclude "posix/ci/cloud/" \
    --docker "${image}"