From 49ab2d77304039ea2858760315e1bed0ad7d3bd7 Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Mon, 24 Aug 2020 12:27:20 -0600 Subject: [PATCH] adding netcdf-c --- .github/workflows/a3.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/.github/workflows/a3.yml b/.github/workflows/a3.yml index 2a957634552..794a2a28703 100644 --- a/.github/workflows/a3.yml +++ b/.github/workflows/a3.yml @@ -48,9 +48,7 @@ jobs: if: steps.cache-hdf5.outputs.cache-hit != 'true' run: | set -x - ls -l /home/runner/openmpi/bin export PATH="/home/runner/openmpi/bin:$PATH" - echo $PATH export CC=/home/runner/openmpi/bin/mpicc wget https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/hdf5-1.10.6/src/hdf5-1.10.6.tar.gz &> /dev/null tar -xzf hdf5-1.10.6.tar.gz @@ -59,5 +57,25 @@ jobs: make sudo make install popd + - name: cache-netcdf-c + id: cache-netcdf-c + uses: actions/cache@v2 + with: + path: ~/netcdf-c + key: netcdf-c-${{ runner.os }}-4.7.4 + + - name: build-netcdf-c + if: steps.cache-netcdf-c.outputs.cache-hit != 'true' + run: | + set -x + export PATH="/home/runner/openmpi/bin:$PATH" + export CC=/home/runner/openmpi/bin/mpicc + wget https://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-c-4.7.4.tar.gz &> /dev/null + tar -xzf netcdf-c-4.7.4.tar.gz + pushd netcdf-c-4.7.4 + ./configure --prefix=/home/runner/netcdf-c --disable-dap --disable-utilities + make -j + sudo make install + popd - name: autoreconf run: autoreconf -i