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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ This file is used to list changes made in each version of the AWS ParallelCluste
**CHANGES**
- Upgrade Slurm to version 24.05.8.

**BUG FIXES**
- Fix a bug in the installation of ARM Performance Library that was causing the build image fail in isolated environments
due to cookbook retrieving GCC dependencies from GCC website rather than ParallelCluster bucket.

3.13.0
------
**ENHANCEMENTS**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,9 @@
rm -rf gcc-#{gcc_version}
tar -xf #{gcc_tarball}
cd gcc-#{gcc_version}
# Patch the download_prerequisites script to download over https and not ftp. This works better in China regions.
sed -i "s#ftp://gcc\.gnu\.org/pub/gcc/infrastructure##{node['cluster']['artifacts_s3_url']}/dependencies/gcc/prerequisites#g" ./contrib/download_prerequisites
# Patch the download_prerequisites script to download GCC dependencies from our public bucket.
# This is required to support build image in isolated environments.
sed -i "s#http://gcc\.gnu\.org/pub/gcc/infrastructure##{node['cluster']['artifacts_s3_url']}/dependencies/gcc/prerequisites#g" ./contrib/download_prerequisites
./contrib/download_prerequisites
mkdir build && cd build
../configure --prefix=/opt/arm/armpl/gcc/#{gcc_version} --disable-bootstrap --enable-checking=release --enable-languages=c,c++,fortran --disable-multilib
Expand Down
Loading