Skip to content

Commit

Permalink
Update project-build-mac.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hallfjonas authored Oct 5, 2023
1 parent 92d28bc commit d4e3607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/project-build-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
- name: install pre-reqs
run: brew install gcc cmake
- name: build step
run: mkdir build; cd build; cmake -DBUILD_PYTHON_INTERFACE=OFF -DCMAKE_CXX_COMPILER=/usr/bin/g++ ..; make;
run: mkdir build; cd build; CXX="gcc-11" CC="gcc-11"; cmake -DBUILD_PYTHON_INTERFACE=OFF -DCMAKE_C_COMPILER=/usr/bin/gcc -DCMAKE_CXX_COMPILER=/usr/bin/g++ ..; make;
- name: run tests
run: sh test.sh

0 comments on commit d4e3607

Please sign in to comment.