Skip to content

Commit

Permalink
Added cache-zlib dependency to cache-netcdf-c
Browse files Browse the repository at this point in the history
  • Loading branch information
scharlton2 authored Jun 24, 2024
1 parent d4bee41 commit db9048a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit db9048a

Please sign in to comment.