Skip to content

Commit c947147

Browse files
committed
adjust hdf5 workflow script
hdf5-2.0 was released, which was breaking our github workflow for hdf5. However, the new 2.0 release of hdf5 changed the build system to CMake instead of configure/make. Will investigate at a later stage how to adjust the CI workflow script for hdf5-2.0, for now just hard code the last release of hdf5-1.14.x Signed-off-by: Edgar Gabriel <Edgar.Gabriel@amd.com> (cherry picked from commit 091d788)
1 parent fe8ed63 commit c947147

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/hdf5-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
make -j 8 && make install
2121
- name: Install HDF5
2222
run: |
23-
wget --progress=dot:giga https://github.com/HDFGroup/hdf5/releases/latest/download/hdf5.tar.gz
24-
tar -xzf hdf5.tar.gz
25-
mv hdf5-1* hdf5
23+
wget --progress=dot:giga https://github.com/HDFGroup/hdf5/releases/download/hdf5_1.14.6/hdf5-1.14.6.tar.gz
24+
tar -xzf hdf5-1.14.6.tar.gz
25+
mv hdf5-1.14.6 hdf5
2626
cd hdf5
2727
export PATH=/opt/openmpi/bin:${PATH}
2828
export LD_LIBRARY_PATH=/opt/openmpi/lib:${LD_LIBRARY_PATH}

0 commit comments

Comments
 (0)