Skip to content

Commit

Permalink
Turn off coverage reporting in MacOS (#305)
Browse files Browse the repository at this point in the history
* Turn off coverage reporting in MacOS

Something is strange about the coverage reported by MacOS builds. Perhaps llvm-cov? Turning off whilst we investigate.

Relates to #279 and "solves" it by ignoring the problem.

* Of course.

https://github.com/orgs/community/discussions/27152
  • Loading branch information
samcunliffe committed May 24, 2023
1 parent 4fb6cd1 commit f449d61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
lcov --list coverage.info
- name: Upload coverage reports to Codecov
if: matrix.build_testing == 'ON'
if: matrix.build_testing == 'ON' && contains(matrix.os, 'ubuntu')
uses: codecov/codecov-action@v3

- name: Tar the build result to maintain permissions
Expand Down

0 comments on commit f449d61

Please sign in to comment.