Skip to content

Commit e3990f2

Browse files
committed
Fix appleclang compiler exe in GH action and add clang dep
1 parent 6416b7b commit e3990f2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/build_binaries_cmake.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
build_physiboss: "ON"
3939
- os: macos-latest
4040
c_compiler: cc
41-
cpp_compiler: cc++
41+
cpp_compiler: c++
4242
build_physiboss: "ON"
4343

4444
steps:
@@ -51,6 +51,12 @@ jobs:
5151
run: |
5252
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
5353
54+
- name: Install dependencies (Linux)
55+
if: runner.os == 'Linux'
56+
run: |
57+
sudo apt-get update
58+
sudo apt-get install -y libomp-dev
59+
5460
- name: Configure CMake
5561
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
5662
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type

0 commit comments

Comments
 (0)