Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix iim #89

Merged
merged 15 commits into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,17 @@ jobs:
ls -la
# 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

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 }}

export DEFAULT_MODULE_PATH=$(pwd)/plugins/modules
echo "DEFAULT_MODULE_PATH: $DEFAULT_MODULE_PATH"
ls -la
molecule test -s ${{ matrix.scenario }}
2 changes: 1 addition & 1 deletion molecule/__ihs-v90/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
hosts: all
pre_tasks:
- name: Check packages
iim_info:
merative.spm_middleware.iim_info:
iim_path: /opt/IBM/InstallationManager
register: iim_info

Expand Down
2 changes: 1 addition & 1 deletion molecule/__liberty/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- name: Check packages
# Assuming 'iim_info' module is part of the 'iim' role or a custom module.
# If it's a custom module, ensure that it's properly located in the 'library' directory inside the role.
iim_info:
merative.spm_middleware.iim_info:
iim_path: /opt/IBM/InstallationManager
register: iim_info
- name: Get jvm.options
Expand Down
2 changes: 1 addition & 1 deletion molecule/__liberty17/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- name: Check packages
# Assuming 'iim_info' module is part of the 'iim' role or a custom module.
# If it's a custom module, ensure that it's properly located in the 'library' directory inside the role.
iim_info:
merative.spm_middleware.iim_info:
iim_path: /opt/IBM/InstallationManager
register: iim_info
- name: Get jvm.options
Expand Down
2 changes: 1 addition & 1 deletion molecule/__liberty21/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
- name: Check packages
# Assuming 'iim_info' module is part of the 'iim' role or a custom module.
# If it's a custom module, ensure that it's properly located in the 'library' directory inside the role.
iim_info:
merative.spm_middleware.iim_info:
iim_path: /opt/IBM/InstallationManager
register: iim_info
- name: Get jvm.options
Expand Down
2 changes: 1 addition & 1 deletion molecule/__websphere-v90/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
hosts: all
pre_tasks:
- name: Check packages
iim_info:
merative.spm_middleware.iim_info:
iim_path: /opt/IBM/InstallationManager
register: iim_info

Expand Down
Loading