Skip to content

Commit 760883f

Browse files
committed
Start adding brew install for Openmp
1 parent 2a8cb52 commit 760883f

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/cmake.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,13 @@ jobs:
6161
# Note: given a key, the cache content is immutable. If a cache entry has been created improperly, in order the recreate the right content the key must be changed as well, and it must be brand new (i.e. not existing already).
6262
key: |
6363
${{ hashFiles( 'vcpkg_manifest/vcpkg.json' ) }}-${{ hashFiles( '.git/modules/vcpkg/HEAD' )}}-${{ matrix.triplet }}-invalidate
64-
64+
65+
- name: Install OpenMP dependencies with brew for OSX
66+
if: contains(matrix.os,'macos')
67+
run: |
68+
- brew install llvm
69+
- brew install libomp
70+
6571
- name: Show content of workspace after cache has been restored
6672
run: find $RUNNER_WORKSPACE
6773
shell: bash

0 commit comments

Comments
 (0)