From 1cdd3e3550f7193c52b5a758ec17045c590cfaae Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Fri, 3 Feb 2023 16:36:00 +0100 Subject: [PATCH] [TEMP] Run current_container_facts module in CI outside of ansible-test. --- .github/workflows/ansible-test.yml | 2 ++ tests/utils/shippable/linux.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ansible-test.yml b/.github/workflows/ansible-test.yml index dbd37733..785c7c4a 100644 --- a/.github/workflows/ansible-test.yml +++ b/.github/workflows/ansible-test.yml @@ -143,3 +143,5 @@ jobs: target: ${{ matrix.target }} target-python-version: ${{ matrix.python }} testing-type: integration + - name: Show output of the current_container_facts module + run: ANSIBLE_COLLECTIONS_PATHS=/home/runner/work/community.docker/community.docker/ ansible localhost -m community.docker.current_container_facts diff --git a/tests/utils/shippable/linux.sh b/tests/utils/shippable/linux.sh index 9a5381f8..6b1ce566 100755 --- a/tests/utils/shippable/linux.sh +++ b/tests/utils/shippable/linux.sh @@ -16,6 +16,8 @@ else target="azp/" fi +ansible localhost -m community.docker.current_container_facts + # shellcheck disable=SC2086 ansible-test integration --color -v --retry-on-error "${target}" ${COVERAGE:+"$COVERAGE"} ${CHANGED:+"$CHANGED"} ${UNSTABLE:+"$UNSTABLE"} \ --docker "${image}"