Skip to content

Commit

Permalink
attempt at fixing macOS CI by brew installing hdf5
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashergt committed Apr 24, 2024
1 parent 32769e8 commit 968bdb3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install hdf5 for macOS
if: ${{ matrix.os == 'macos-latest' }}
run: brew install hdf5 c-blosc

- name: Install dependencies
run: |
Expand Down Expand Up @@ -110,6 +113,9 @@ jobs:
uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install hdf5 for macOS
if: ${{ matrix.os == 'macos-latest' }}
run: brew install hdf5 c-blosc

- name: Install dependencies
shell: bash -l {0}
Expand Down

0 comments on commit 968bdb3

Please sign in to comment.