We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83cf2c0 + 4230dca commit d7b0c29Copy full SHA for d7b0c29
.github/workflows/ci.yml
@@ -26,6 +26,7 @@ jobs:
26
image:
27
- 'centos:7'
28
- 'rockylinux:8.6'
29
+ - 'rockylinux:8.7'
30
scenario:
31
- test1
32
- test1b
tasks/install.yml
@@ -41,6 +41,12 @@
41
loop: "{{ ohpc_slurm_packages | dict2items }}"
42
when: openhpc_enable.get(item.key, false)
43
44
+- name: Workaround https://github.com/openhpc/ohpc/issues/1644 using older apptainer version
45
+ yum:
46
+ name: https://github.com/apptainer/apptainer/releases/download/v1.1.3/apptainer-1.1.3-1.x86_64.rpm
47
+ disable_gpg_check: true
48
+ when: ansible_distribution_major_version == "8"
49
+
50
- name: Install required slurm packages
51
yum:
52
name: "{{ openhpc_slurm_pkglist | reject('eq', '') }}"
0 commit comments