Skip to content

Commit

Permalink
CI: install hdf5 on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
astraw committed Dec 9, 2024
1 parent 24ba56a commit c158895
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install libhdf5 (macOS)
# See https://stackoverflow.com/questions/73029883
if: runner.os == 'macOS'
run: |
brew install hdf5
brew install c-blosc
export HDF5_DIR=/opt/homebrew/opt/hdf5
export BLOSC_DIR=/opt/homebrew/opt/c-blosc
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Build and install flydra_core
Expand Down

0 comments on commit c158895

Please sign in to comment.