Skip to content
Merged
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
13 changes: 1 addition & 12 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
fail-fast: false
matrix:
ansible:
- "2.9"
- "2.10"
- "2.12"
steps:
# Checks-out the repository under $GITHUB_WORKSPACE, so it's accessible to the job
Expand All @@ -25,16 +23,7 @@ jobs:
run: |
pipx uninstall ansible-core
python3 -m pip install --upgrade pip
ansible_version=${{ matrix.ansible }}
if [[ "${{ matrix.ansible }}" = "2.9" ]]; then
ansible_package=ansible
elif [[ "${{ matrix.ansible }}" = "2.10" ]]; then
ansible_package=ansible
ansible_version=3
else
ansible_package=ansible-core
fi
python3 -m pip install $ansible_package==$ansible_version.* docker git+https://github.com/stackhpc/ansible-modules-hashivault@stackhpc
python3 -m pip install ansible-core==${{ matrix.ansible }}.* docker git+https://github.com/stackhpc/ansible-modules-hashivault@stackhpc
ansible-galaxy collection build
ansible-galaxy collection install *.tar.gz

Expand Down
Loading