From db9048a723b4c6e9afab10846d927bc52026cbd7 Mon Sep 17 00:00:00 2001 From: "Charlton, Scott R" Date: Mon, 24 Jun 2024 17:10:18 -0600 Subject: [PATCH] Added cache-zlib dependency to cache-netcdf-c --- .github/workflows/build.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b32190e..76da076 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -345,7 +345,7 @@ jobs: cache-netcdf-c: # @todo 12m 29s runs-on: windows-2019 - needs: [cache-hdf5] + needs: [cache-hdf5, cache-zlib] steps: - uses: actions/checkout@v3 @@ -365,6 +365,13 @@ jobs: path: ${{github.workspace}}/lib/install/hdf5-${{env.HDF5_VER}} key: ${{runner.os}}-hdf5-${{hashFiles('./hdf5.*')}} + - name: Cache zlib + id: cache-zlib + uses: actions/cache@v3 + with: + path: ${{github.workspace}}/lib/install/zlib-${{env.ZLIB_VER}} + key: ${{runner.os}}-zlib-${{hashFiles('./zlib.*')}} + - name: Cache netcdf-c id: cache-netcdf-c uses: actions/cache@v3