45a92ea49c
Change-Id: I3c8658d0cd3e0ec9c2b82f9ca5dfe7415af79cde Signed-off-by: Maksim Malchuk <maksim.malchuk@gmail.com>
27 lines
851 B
Bash
27 lines
851 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
DEST="$(dirname $0)/../.tox/linters/collections"
|
|
SOURCE="${ANSIBLE_COLLECTION_SOURCE_PATH:-../ansible-collections-openstack}"
|
|
|
|
if [ ! -d "$SOURCE" ]; then
|
|
echo "Cannot find ansible-collections-openstack at $SOURCE"
|
|
exit 1
|
|
fi
|
|
|
|
rm -f "$DEST" || true
|
|
mkdir -p "$DEST/ansible_collections/openstack"
|
|
rm -f "$DEST/ansible_collections/openstack/cloud"
|
|
|
|
ln -s "$(realpath $SOURCE)" "$DEST/ansible_collections/openstack/cloud"
|
|
|
|
export ANSIBLE_COLLECTIONS_PATHS="$(realpath $DEST)"
|
|
export ANSIBLE_LIBRARY="$(dirname $0)/../playbooks/library"
|
|
export ANSIBLE_ROLES_PATH="$(dirname $0)/../playbooks/roles"
|
|
|
|
find playbooks -maxdepth 1 -type f -regex '.*.ya?ml' -print0 | \
|
|
xargs -t -n1 -0 ansible-lint -v --nocolor
|
|
find playbooks/roles -maxdepth 1 -mindepth 1 -type d -printf "%p/\n" | \
|
|
xargs -t -n1 ansible-lint -v --nocolor
|