Skip to content

Commit 7791082

Browse files
committed
disable HDF4 install on MacOS as Homebrew formula broken, use libhdf4-alt-dev
1 parent 9ce13ce commit 7791082

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

github-actions/install-dep-hdf4/action.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ runs:
77
run: |
88
if ${{ toJSON( runner.os == 'Linux' ) }}; then
99
echo "::group::Install HDF4 (via apt-get)"
10-
sudo apt-get -y update && sudo apt-get install --no-install-recommends -y libhdf4-dev
11-
echo "::endgroup::"
12-
fi
13-
- name: Install HDF4 (via brew)
14-
shell: bash
15-
run: |
16-
if ${{ toJSON( runner.os == 'macOS' ) }}; then
17-
echo "::group::Install HDF4 (via brew)"
18-
brew install brewsci/science/hdf4
10+
sudo apt-get -y update && sudo apt-get install --no-install-recommends -y libhdf4-alt-dev
1911
echo "::endgroup::"
2012
fi
13+
# formula is broken as of 2024-12-03 "no formula szip"
14+
# - name: Install HDF4 (via brew)
15+
# shell: bash
16+
# run: |
17+
# if ${{ toJSON( runner.os == 'macOS' ) }}; then
18+
# echo "::group::Install HDF4 (via brew)"
19+
# brew install brewsci/science/hdf4
20+
# echo "::endgroup::"
21+
# fi

0 commit comments

Comments
 (0)