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

Bump CI versions #159

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
# See:
# - https://bugzilla.redhat.com/show_bug.cgi?id=190144
# - https://github.com/systemd/systemd/pull/16424
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -80,7 +80,8 @@ jobs:

- name: Install test dependencies.
run: |
pip3 install -U ansible molecule-podman yamllint ansible-lint
pip3 install -U pip
pip3 install -U -r molecule/requirements.txt
ansible-galaxy collection install containers.podman:>=1.10.1 # otherwise get https://github.com/containers/ansible-podman-collections/issues/428

- name: Display ansible version
Expand Down
4 changes: 2 additions & 2 deletions molecule/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Local installation on a RockyLinux 8.x machine looks like:
sudo yum install -y git
git clone [email protected]:stackhpc/ansible-role-openhpc.git
cd ansible-role-openhpc/
python3.8 -m venv venv
python3.9 -m venv venv
. venv/bin/activate
pip install -U pip
pip install -r molecule/requirements.txt
Expand All @@ -50,7 +50,7 @@ During development you may want to:

- See some debugging information by prepending:

MOLECULE_NO_LOG="false" ...
MOLECULE_NO_LOG=false ...

- Prevent destroying insstances using:

Expand Down
7 changes: 3 additions & 4 deletions molecule/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
pip
setuptools
molecule[podman,lint,ansible]
ansible>=2.9.0
molecule==5.0.1
ansible==7.5.0
molecule-plugins[podman]==23.4.1