Skip to content

Commit 3b13b62

Browse files
authored
Merge branch 'develop' into lroberts36/solver-speedup-restrict
2 parents 0cd8da8 + 94e5ac4 commit 3b13b62

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci-macos.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,16 @@ jobs:
3030

3131
- name: Install dependencies
3232
run: |
33-
brew install openmpi hdf5-mpi adios2 || true
33+
brew install openmpi adios2 || true
34+
35+
# this is a workaround because homebrew's stable is hdf5 2.0.0 and cmake's
36+
# find_package(HDF5) doesn't properly determine HDF5_IS_PARALLEL
37+
# this *should* be fixed in cmake 4.3
38+
- name: Install hdf5 from old formula
39+
run: |
40+
mkdir -p $(brew --repository)/Library/Taps/user/homebrew-repo
41+
curl -o $(brew --repository)/Library/Taps/user/homebrew-repo/hdf5-mpi.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/d03791212a4670e68f21c66939c5d348bc1d4bef/Formula/h/hdf5-mpi.rb
42+
brew install user/repo/hdf5-mpi
3443
3544
- name: Install parthenon_tools
3645
run: |

0 commit comments

Comments
 (0)