Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ CHANGELOG
- Libfabric-aws: `libfabric-aws-1.16.1`
- Rdma-core: `rdma-core-43.0-2`
- Open MPI: `openmpi40-aws-4.1.4-3`
- Upgrade Slurm to version 22.05.6.
- Upgrade Slurm to version 22.05.7.

3.3.1
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
default['pcluster']['node_type'] = ENV['PCLUSTER_NODE_TYPE']
default['pcluster']['python_root'] = ENV['PCLUSTER_PYTHON_ROOT']

default['slurm']['version'] = '22-05-6-1'
default['slurm']['version'] = '22-05-7-1'
default['slurm']['url'] = "https://github.com/SchedMD/slurm/archive/slurm-#{node['slurm']['version']}.tar.gz"
default['slurm']['sha1'] = 'bd2fbc4f6fcf41bfce899eaac0d92d9f09996cd3'
default['slurm']['sha1'] = 'a9208e0d6af8465e417d5a60a6ea82b151b6fc34'
default['slurm']['user'] = 'slurm-user'
default['slurm']['group'] = node['slurm']['user']
default['slurm']['install_dir'] = "#{node['pcluster']['shared_dir']}/slurm"
Expand Down
2 changes: 1 addition & 1 deletion tests/integration-tests/tests/schedulers/test_slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@ def _gpu_resource_check(slurm_commands, partition, instance_type, instance_type_
def _test_slurm_version(remote_command_executor):
logging.info("Testing Slurm Version")
version = remote_command_executor.run_remote_command("sinfo -V").stdout
assert_that(version).is_equal_to("slurm 22.05.6")
assert_that(version).is_equal_to("slurm 22.05.7")


def _test_job_dependencies(slurm_commands, region, stack_name, scaledown_idletime):
Expand Down