From fa0413a7c04a383b794626647050e08c7a51e038 Mon Sep 17 00:00:00 2001 From: Himani Deshpande Date: Tue, 13 Feb 2024 16:58:17 -0500 Subject: [PATCH] [Dependencies] Update PMIX to 4.2.9 --- .../aws-parallelcluster-slurm/attributes/slurm_attributes.rb | 4 ++++ .../aws-parallelcluster-slurm/recipes/install/install_pmix.rb | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/cookbooks/aws-parallelcluster-slurm/attributes/slurm_attributes.rb b/cookbooks/aws-parallelcluster-slurm/attributes/slurm_attributes.rb index 9628dfab06..2c1bd8f609 100644 --- a/cookbooks/aws-parallelcluster-slurm/attributes/slurm_attributes.rb +++ b/cookbooks/aws-parallelcluster-slurm/attributes/slurm_attributes.rb @@ -11,3 +11,7 @@ default["cluster"]["scheduler_compute_resource_name"] = nil default['cluster']['enable_nss_slurm'] = node['cluster']['directory_service']['enabled'] + +# PMIX Version and Checksum +default['cluster']['pmix']['version'] = '4.2.9' +default['cluster']['pmix']['sha256'] = '00ddb36fb81c31519972079a218c3cdd903510fc3910abaf4d484068fa29e884' diff --git a/cookbooks/aws-parallelcluster-slurm/recipes/install/install_pmix.rb b/cookbooks/aws-parallelcluster-slurm/recipes/install/install_pmix.rb index e873e8af18..ad6f2d3c73 100644 --- a/cookbooks/aws-parallelcluster-slurm/recipes/install/install_pmix.rb +++ b/cookbooks/aws-parallelcluster-slurm/recipes/install/install_pmix.rb @@ -16,9 +16,9 @@ # limitations under the License. # PMIx software -pmix_version = '4.2.6' +pmix_version = node['cluster']['pmix']['version'] pmix_url = "https://github.com/openpmix/openpmix/releases/download/v#{pmix_version}/pmix-#{pmix_version}.tar.gz" -pmix_sha256 = '2085615d1b8d72d944b4580cfd0ec958ce9050f9c7585081351ddaf1d63fe201' +pmix_sha256 = node['cluster']['pmix']['sha256'] pmix_tarball = "#{node['cluster']['sources_dir']}/pmix-#{pmix_version}.tar.gz" remote_file pmix_tarball do