Skip to content

Commit 44f3a0a

Browse files
himani2411Himani Deshpande
andauthored
[Dependencies] Update PMIX to 4.2.9 (#2650)
Co-authored-by: Himani Deshpande <[email protected]>
1 parent 3c75a58 commit 44f3a0a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

cookbooks/aws-parallelcluster-slurm/attributes/slurm_attributes.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@
1111
default["cluster"]["scheduler_compute_resource_name"] = nil
1212

1313
default['cluster']['enable_nss_slurm'] = node['cluster']['directory_service']['enabled']
14+
15+
# PMIX Version and Checksum
16+
default['cluster']['pmix']['version'] = '4.2.9'
17+
default['cluster']['pmix']['sha256'] = '00ddb36fb81c31519972079a218c3cdd903510fc3910abaf4d484068fa29e884'

cookbooks/aws-parallelcluster-slurm/recipes/install/install_pmix.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
# limitations under the License.
1717

1818
# PMIx software
19-
pmix_version = '4.2.6'
19+
pmix_version = node['cluster']['pmix']['version']
2020
pmix_url = "https://github.com/openpmix/openpmix/releases/download/v#{pmix_version}/pmix-#{pmix_version}.tar.gz"
21-
pmix_sha256 = '2085615d1b8d72d944b4580cfd0ec958ce9050f9c7585081351ddaf1d63fe201'
21+
pmix_sha256 = node['cluster']['pmix']['sha256']
2222
pmix_tarball = "#{node['cluster']['sources_dir']}/pmix-#{pmix_version}.tar.gz"
2323

2424
remote_file pmix_tarball do

0 commit comments

Comments
 (0)