summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2023-06-20 23:58:50 (GMT)
committerGitHub <noreply@github.com>2023-06-20 23:58:50 (GMT)
commit94ea835bbb50d5b5215c7e02515cd0f603985c92 (patch)
tree095694a7af7f3ebd2471e985158fef022cd6a9f2
parent7e3c1007553f332efa2966cecfa8a6e7e6112c34 (diff)
downloadhdf5-94ea835bbb50d5b5215c7e02515cd0f603985c92.zip
hdf5-94ea835bbb50d5b5215c7e02515cd0f603985c92.tar.gz
hdf5-94ea835bbb50d5b5215c7e02515cd0f603985c92.tar.bz2
speed-up building HDF5 (#3087)
Disables building the tests when building the netCDF, etc.
-rw-r--r--.github/workflows/hdfeos5.yml2
-rw-r--r--.github/workflows/netcdf.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/hdfeos5.yml b/.github/workflows/hdfeos5.yml
index 089e8df..04c92b9 100644
--- a/.github/workflows/hdfeos5.yml
+++ b/.github/workflows/hdfeos5.yml
@@ -36,7 +36,7 @@ jobs:
- name: Install HDF5
run: |
./autogen.sh
- ./configure --prefix=/usr/local --with-default-api-version=v16
+ ./configure --prefix=/usr/local --disable-tests --with-default-api-version=v16
make
sudo make install
- name: Install HDF-EOS5
diff --git a/.github/workflows/netcdf.yml b/.github/workflows/netcdf.yml
index 37041d6..55a71c3 100644
--- a/.github/workflows/netcdf.yml
+++ b/.github/workflows/netcdf.yml
@@ -35,7 +35,7 @@ jobs:
- name: Install HDF5
run: |
./autogen.sh
- ./configure --prefix=/usr/local --disable-static --enable-shared --enable-hl --with-szlib
+ ./configure --prefix=/usr/local --disable-tests --disable-static --enable-shared --enable-hl --with-szlib
make -j
sudo make install -j
- name: Checkout netCDF