forked from CCCHH/ansible-infra
30 lines
930 B
Bash
Executable file
30 lines
930 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
set -o pipefail -eux
|
|
|
|
declare -a args
|
|
IFS='/:' read -ra args <<< "$1"
|
|
|
|
image="${args[1]}"
|
|
|
|
if [ "${#args[@]}" -gt 2 ]; then
|
|
target="azp/${args[2]}/"
|
|
else
|
|
target="azp/"
|
|
fi
|
|
|
|
if [[ "${image}" =~ -pypi-latest$ ]]; then
|
|
image="${image/-pypi-latest}"
|
|
echo 'force_docker_sdk_for_python_pypi: true' >> tests/integration/integration_config.yml
|
|
fi
|
|
if [[ "${image}" =~ -dev-latest$ ]]; then
|
|
image="${image/-dev-latest}"
|
|
echo 'force_docker_sdk_for_python_dev: true' >> tests/integration/integration_config.yml
|
|
fi
|
|
|
|
# shellcheck disable=SC2086
|
|
ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \
|
|
--docker "${image}"
|