File tree Expand file tree Collapse file tree 6 files changed +10
-3
lines changed Expand file tree Collapse file tree 6 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 8
8
- ' environments/.stackhpc/tofu/cluster_image.auto.tfvars.json'
9
9
- ' ansible/roles/doca/**'
10
10
- ' ansible/roles/cuda/**'
11
+ - ' ansible/roles/slurm_recompile/**' # runs on cuda group
11
12
- ' ansible/roles/lustre/**'
12
13
- ' .github/workflows/extra.yml'
13
14
pull_request :
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ roles/*
90
90
! roles /gateway /**
91
91
! roles /alertmanager /
92
92
! roles /alertmanager /**
93
- ! roles /slurm_recompile /**
93
+ ! roles /slurm_recompile /
94
94
! roles /slurm_recompile /**
95
95
! roles /nhc /
96
96
! roles /nhc /**
Original file line number Diff line number Diff line change 1
- doca_version : ' 2.9.1 ' # 2.9 is LTS, last to support ConnectX-4, 3 years for bug fixes and CVE updates
1
+ doca_version : ' 2.9.2 ' # 2.9 is LTS, last to support ConnectX-4, 3 years for bug fixes and CVE updates
2
2
doca_profile : doca-ofed
3
3
doca_repo_url : " https://linux.mellanox.com/public/repo/doca/{{ doca_version }}/rhel{{ ansible_distribution_version }}/{{ ansible_architecture }}/"
Original file line number Diff line number Diff line change 1
- ofed_version : ' 23 .10-3.2.2 .0' # LTS
1
+ ofed_version : ' 24 .10-2.1.8 .0' # LTS
2
2
ofed_download_url : https://content.mellanox.com/ofed/MLNX_OFED-{{ ofed_version }}/MLNX_OFED_LINUX-{{ ofed_version }}-{{ ofed_distro }}{{ ofed_distro_version }}-{{ ofed_arch }}.tgz
3
3
ofed_distro : rhel # NB: not expected to work on other distros due to installation differences
4
4
ofed_distro_version : " {{ ansible_distribution_version }}" # e.g. '8.9'
Original file line number Diff line number Diff line change 2
2
# Whether to link slurm against the NVIDIA management library
3
3
slurm_recompile_with_nvml : false
4
4
5
+ slurm_recompile_build_packages :
6
+ - rpm-build
Original file line number Diff line number Diff line change 12
12
set_fact :
13
13
slurm_package : " {{ ansible_facts.packages['slurm-slurmd-ohpc'].0 }}"
14
14
15
+ - name : Install build packages
16
+ ansible.builtin.dnf :
17
+ name : " {{ slurm_recompile_build_packages }}"
18
+
15
19
- name : Recompile and install slurm packages
16
20
shell : |
17
21
#!/bin/bash
You can’t perform that action at this time.
0 commit comments