Skip to content

Commit

Permalink
ci: use macos sonarcloud build wrapper on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasDebrunner committed Dec 11, 2023
1 parent 83564ec commit 0eb480f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,14 @@ jobs:
- name: Build tests
run: cmake -B build -S .

- name: Build tests
- name: Build tests (linux)
if: matrix.platform == 'ubuntu-latest'
run: build-wrapper-linux-x86-64 --out-dir bw-output cmake --build build


- name: Build tests (macos)
if: matrix.platform == 'macos-latest'
run: build-wrapper-macosx-x86 --out-dir bw-output cmake --build build

- name: Run tests and coverage
run: ./build/tests/tests

Expand Down

0 comments on commit 0eb480f

Please sign in to comment.