Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Muntean committed Jun 13, 2024
1 parent d2e7ff0 commit 673746b
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,28 @@ jobs:
# Fake install cloned collection (required for molecule)
mkdir -p $HOME/.ansible/collections/$COLLECTION_NAMESPACE
ln -s ansible_collections/$COLLECTION_NAMESPACE/$COLLECTION_NAME $HOME/.ansible/collections/$COLLECTION_NAMESPACE/$COLLECTION_NAME
# - name: Sanity checks
# run: |
# ansible-test sanity --docker -v --color --python ${{ env.python_ver }}
- name: Molecule
run: |
cd ${{ env.NEW_REPO_LOC }}
echo "LIST EXISTING CONFIG:"
ansible-config dump |grep DEFAULT_MODULE_PATH
echo "PWD DIR:"
pwd
echo "MODULE DOCS:"
ansible localhost -m iim_info
echo "LS COMMAND"
ls
echo "NEW_REPO_LOC:"
echo ${{ env.NEW_REPO_LOC }}
export DEFAULT_MODULE_PATH=${{ env.NEW_REPO_LOC }}/plugins/modules
echo "MODULE PATH:"
echo $DEFAULT_MODULE_PATH
ls -la
molecule test -s ${{ matrix.scenario }}

0 comments on commit 673746b

Please sign in to comment.