Skip to content

Commit

Permalink
Merge pull request #304 from mabarnes/fix-hdf5-download-version
Browse files Browse the repository at this point in the history
Revert downloaded HDF5 to 1.14.3
  • Loading branch information
johnomotani authored Jan 13, 2025
2 parents 0d5679b + d536f5a commit 2791ce2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions machines/generic-batch-template/compile_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ if [[ $BUILDHDF5 == "y" && -d hdf5-build ]]; then
fi

if [[ $BUILDHDF5 == "y" ]]; then
HDF5=hdf5-1.14.5
HDF5=hdf5-1.14.3
# Download and extract the source
wget -O ${HDF5}.tar.gz https://support.hdfgroup.org/releases/hdf5/v1_14/v1_14_5/downloads/hdf5-1.14.5.tar.gz
tar xjf ${HDF5}.tar.gz
wget -O ${HDF5}.tar.bz2 https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.14/hdf5-1.14.3/src/hdf5-1.14.3.tar.bz2
tar xjf ${HDF5}.tar.bz2

cd $HDF5

Expand Down
6 changes: 3 additions & 3 deletions machines/generic-pc/compile_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ else
fi

if [[ $BUILDHDF5 == "y" ]]; then
HDF5=hdf5-1.14.5
HDF5=hdf5-1.14.3
# Download and extract the source
wget -O ${HDF5}.tar.gz https://support.hdfgroup.org/releases/hdf5/v1_14/v1_14_5/downloads/hdf5-1.14.5.tar.gz
tar xzf ${HDF5}.tar.gz
wget -O ${HDF5}.tar.bz2 https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.14/hdf5-1.14.3/src/hdf5-1.14.3.tar.bz2
tar xjf ${HDF5}.tar.bz2

cd $HDF5

Expand Down
6 changes: 3 additions & 3 deletions machines/marconi/compile_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ if [ -d hdf5-build ]; then
fi

if [ $BUILDHDF5 -eq 0 ]; then
HDF5=hdf5-1.14.5
HDF5=hdf5-1.14.3
# Download and extract the source
wget -O ${HDF5}.tar.gz https://support.hdfgroup.org/releases/hdf5/v1_14/v1_14_5/downloads/hdf5-1.14.5.tar.gz
tar xjf ${HDF5}.tar.gz
wget -O ${HDF5}.tar.bz2 https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.14/hdf5-1.14.3/src/hdf5-1.14.3.tar.bz2
tar xjf ${HDF5}.tar.bz2

cd $HDF5

Expand Down

0 comments on commit 2791ce2

Please sign in to comment.