mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 11:58:43 +00:00
* Move licenses to LICENSES/, use SPDX-License-Identifier, mention all licenses in galaxy.yml. * ignore.txt lines cannot be empty or contain only a comment. * Cleanup. * This particular __init__.py seems to be crucial. * Try extra newline. * Markdown comments are a real mess. I hope this won't break Galaxy... * More licenses. * Add sanity test. * Skip some files, lint. * Make sure there is a copyright line everywhere. * Also check for copyright line in sanity tests. * Remove colon after 'Copyright'. * Normalize lint script. * Avoid colon after 'Copyright' in lint script. * Improve license checker. * Update README.md Co-authored-by: Maxwell G <9920591+gotmax23@users.noreply.github.com> * Remove superfluous space. * Referencing target instead of symlink Co-authored-by: Maxwell G <9920591+gotmax23@users.noreply.github.com>
74 lines
1.8 KiB
Bash
Executable File
74 lines
1.8 KiB
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 -euo pipefail
|
|
|
|
[[ -n "${DEBUG:-}" || -n "${ANSIBLE_DEBUG:-}" ]] && set -x
|
|
|
|
readonly IMAGE="quay.io/ansible/ansible-runner:devel"
|
|
readonly PYTHON="$(command -v python3 python | head -n1)"
|
|
|
|
# Determine collection root
|
|
COLLECTION_ROOT=./
|
|
while true; do
|
|
if [ -e ${COLLECTION_ROOT}galaxy.yml ] || [ -e ${COLLECTION_ROOT}MANIFEST.json ]; then
|
|
break
|
|
fi
|
|
COLLECTION_ROOT="${COLLECTION_ROOT}../"
|
|
done
|
|
readonly COLLECTION_ROOT="$(cd ${COLLECTION_ROOT} ; pwd)"
|
|
|
|
# Setup phase
|
|
echo "Setup"
|
|
ANSIBLE_ROLES_PATH=.. ansible-playbook setup.yml
|
|
|
|
# If docker wasn't installed, don't run the tests
|
|
if [ "$(command -v docker)" == "" ]; then
|
|
exit
|
|
fi
|
|
|
|
cleanup() {
|
|
echo "Cleanup"
|
|
echo "Shutdown"
|
|
ANSIBLE_ROLES_PATH=.. ansible-playbook shutdown.yml
|
|
echo "Done"
|
|
}
|
|
|
|
envs=(--env "HOME=${HOME:-}")
|
|
while IFS=$'\0' read -d '' -r line; do
|
|
key="$(echo "$line" | cut -d= -f1)"
|
|
value="$(echo "$line" | cut -d= -f2-)"
|
|
if [[ "${key}" =~ ^(ANSIBLE_|JUNIT_OUTPUT_DIR$|OUTPUT_DIR$|PYTHONPATH$) ]]; then
|
|
envs+=(--env "${key}=${value}")
|
|
fi
|
|
done < <(printenv -0)
|
|
|
|
# Test phase
|
|
cat > test_connection.inventory << EOF
|
|
[nsenter]
|
|
nsenter-no-pipelining ansible_pipelining=false
|
|
nsenter-pipelining ansible_pipelining=true
|
|
|
|
[nsenter:vars]
|
|
ansible_host=localhost
|
|
ansible_connection=community.docker.nsenter
|
|
ansible_host_volume_mount=/host
|
|
ansible_nsenter_pid=1
|
|
ansible_python_interpreter=${PYTHON}
|
|
EOF
|
|
|
|
echo "Run tests"
|
|
set -x
|
|
docker run \
|
|
-i \
|
|
--rm \
|
|
--privileged \
|
|
--pid host \
|
|
"${envs[@]}" \
|
|
--volume "${COLLECTION_ROOT}:${COLLECTION_ROOT}" \
|
|
--workdir "$(pwd)" \
|
|
"${IMAGE}" \
|
|
./runme-connection.sh "$@"
|