From 30472a311d6fedd61a84ff509bf952c5589a5b21 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 2 Sep 2024 09:15:05 +0200 Subject: [PATCH 1/5] Fix ansible version in test --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 39e704b..9c2c37a 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -37,7 +37,7 @@ jobs: python-version: '3.x' - name: Install test dependencies. - run: pip3 install ansible molecule-plugins[docker] docker + run: pip3 install ansible==8.7.0 molecule-plugins[docker] docker - name: Run Molecule tests. run: molecule test --all From f580bf004fa74009445111f169f1b7af1bad48b5 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 2 Sep 2024 09:18:43 +0200 Subject: [PATCH 2/5] Fix ansible version in test --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9c2c37a..a47c235 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -37,7 +37,7 @@ jobs: python-version: '3.x' - name: Install test dependencies. - run: pip3 install ansible==8.7.0 molecule-plugins[docker] docker + run: pip3 install ansible==4.10.0 molecule-plugins[docker] docker - name: Run Molecule tests. run: molecule test --all From fcba1fa56215b07e0a95672059fd5a3a83b9a9a9 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 2 Sep 2024 09:22:35 +0200 Subject: [PATCH 3/5] Remove rocky8 --- .github/workflows/main.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a47c235..9dc911f 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -21,7 +21,6 @@ jobs: strategy: matrix: distro: - - rockylinux8 - rockylinux9 - ubuntu2204 - ubuntu2404 @@ -37,7 +36,7 @@ jobs: python-version: '3.x' - name: Install test dependencies. - run: pip3 install ansible==4.10.0 molecule-plugins[docker] docker + run: pip3 install ansible==8.7.0 molecule-plugins[docker] docker - name: Run Molecule tests. run: molecule test --all From ef609a2aa39c259da1696b33a40293ab4180ce91 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 9 Dec 2024 10:08:11 +0100 Subject: [PATCH 4/5] Fix --- tasks/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/tasks/main.yml b/tasks/main.yml index 4ced7e9..5b88569 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -6,7 +6,6 @@ install_from_source: false when: > (slurm_version is version('23.11.0', '>=') and ansible_distribution_version >= "20.04") or - (slurm_version == "23.02.6" and ansible_distribution_version == "24.04") or (slurm_version == "21.08.5" and ansible_distribution_version == "22.04") or (slurm_version == "19.05.5" and ansible_distribution_version == "20.04") or (slurm_version == "17.11.2" and ansible_distribution_version == "18.04") From 95a5b4da2f9b1ffc7bf39c760974af9629f3cdd6 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 9 Dec 2024 10:12:03 +0100 Subject: [PATCH 5/5] Fix tests --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9dc911f..e8a5eb1 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -36,7 +36,7 @@ jobs: python-version: '3.x' - name: Install test dependencies. - run: pip3 install ansible==8.7.0 molecule-plugins[docker] docker + run: pip3 install requests==2.31.0 ansible==8.7.0 molecule-plugins[docker] docker - name: Run Molecule tests. run: molecule test --all