From 6d2b2a9aa171c2b76c1e0a20e568f9e725f25e73 Mon Sep 17 00:00:00 2001 From: Edward Hartnett Date: Mon, 24 Aug 2020 12:35:52 -0600 Subject: [PATCH] adding netcdf-fortran and pnetcdf --- .github/workflows/a3.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/a3.yml b/.github/workflows/a3.yml index 6a61f972314..ce50f3b3ace 100644 --- a/.github/workflows/a3.yml +++ b/.github/workflows/a3.yml @@ -42,7 +42,7 @@ jobs: uses: actions/cache@v2 with: path: ~/hdf5 - key: hdf5-${{ runner.os }}-1.10.6 + key: hdf5-${{ runner.os }}-1.10.6-openmpi-4.0.4 - name: build-hdf5 if: steps.cache-hdf5.outputs.cache-hit != 'true' @@ -53,16 +53,16 @@ jobs: 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 pushd hdf5-1.10.6 - ./configure --prefix=/home/runner/hdf5 --enable-parallel --disable-tools --disable-fortran --disable-cxx + ./configure --prefix=/home/runner/hdf5 --enable-parallel --disable-tools --disable-fortran --disable-cxx --enable-parallel-tests make - sudo make install + sudo make check 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 + key: netcdf-c-${{ runner.os }}-4.7.4-openmpi-4.0.4 - name: build-netcdf-c if: steps.cache-netcdf-c.outputs.cache-hit != 'true' @@ -82,7 +82,7 @@ jobs: uses: actions/cache@v2 with: path: ~/netcdf-fortran - key: netcdf-fortran-${{ runner.os }}-4.5.3 + key: netcdf-fortran-${{ runner.os }}-4.5.3-openmpi-4.0.4 - name: build-netcdf-fortran if: steps.cache-netcdf-fortran.outputs.cache-hit != 'true' @@ -102,7 +102,7 @@ jobs: uses: actions/cache@v2 with: path: ~/pnetcdf - key: pnetcdf-${{ runner.os }}-1.12.1 + key: pnetcdf-${{ runner.os }}-1.12.1-openmpi-4.0.4 - name: build-pnetcdf if: steps.cache-pnetcdf.outputs.cache-hit != 'true'