File tree Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Expand file tree Collapse file tree 1 file changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -81,21 +81,10 @@ jobs:
8181 curl -LO https://support.hdfgroup.org/releases/hdf5/v${VER_MAJOR}/v${VER_NOPATCH}/downloads/hdf5-${HDF5_VERSION}.tar.gz
8282 tar -zxf hdf5-${HDF5_VERSION}.tar.gz
8383 cd hdf5-${HDF5_VERSION}
84- ./configure --prefix=${HDF5_ROOT} \
85- --silent \
86- --enable-parallel \
87- --enable-build-mode=production \
88- --enable-unsupported \
89- --enable-threadsafe \
90- --disable-doxygen-doc \
91- --disable-doxygen-man \
92- --disable-doxygen-html \
93- --disable-tests \
94- --disable-fortran \
95- --disable-cxx \
96- CC=${MPICH_DIR}/bin/mpicc
97- make -s LIBTOOLFLAGS=--silent V=1 -j 8 install > qout 2>&1
98- make -s -j 8 distclean >> qout 2>&1
84+ CC=${MPICH_DIR}/bin/mpicc cmake ../hdf5-$VERSION \
85+ -D"CMAKE_INSTALL_PREFIX=${HDF5_ROOT}" \
86+ -D"HDF5_ENABLE_PARALLEL=ON"
87+ make -j 8 install > qout 2>&1
9988 - name : Dump config.log file if build HDF5 failed
10089 if : ${{ failure() }}
10190 run : |
You can’t perform that action at this time.
0 commit comments