Skip to content

Commit

Permalink
ci: compound if logic
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Jan 8, 2024
1 parent 64a661c commit a4229ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
- uses: actions/checkout@v4

- name: install NetCDF system libs
if: ${{ !matrix.build }} && runner.os == 'Linux'
if: ${{ !matrix.build && runner.os == 'Linux' }}
run: sudo apt install --no-install-recommends ninja-build libnetcdff-dev

- name: install HDF5 system libs
if: ${{ !matrix.build }} && runner.os == 'macOS'
- name: install NetCDF system libs
if: ${{ !matrix.build && runner.os == 'macOS' }}
run: brew install netcdf

- run: >-
Expand Down

0 comments on commit a4229ff

Please sign in to comment.