Skip to content

Commit

Permalink
CI: Debugging the OpenMP_ROOT issue
Browse files Browse the repository at this point in the history
  • Loading branch information
krivenko committed Jan 2, 2025
1 parent e5b6d7d commit d9a7eae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-and-test-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ jobs:

- name: Install dependencies
run: |
brew install llvm@17 eigen fftw hdf5 open-mpi numpy scipy mpi4py
brew install llvm@17 libomp eigen fftw hdf5 open-mpi numpy scipy mpi4py
pip install --user mako
- name: Set OpenMP_ROOT for Clang
if: startsWith(matrix.compiler.name, 'clang')
run: echo "OpenMP_ROOT=$(brew --prefix libomp)" >> $GITHUB_ENV
run: |
echo "OpenMP_ROOT=$(brew --prefix libomp)" >> $GITHUB_ENV
- name: Cache Boost (a C++20 compatible version)
id: cache-boost
Expand Down

0 comments on commit d9a7eae

Please sign in to comment.