We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4079fdc commit 16afdfdCopy full SHA for 16afdfd
1 file changed
.github/workflows/coverage.yml
@@ -62,7 +62,10 @@ jobs:
62
63
- name: Test for code coverage
64
run: |
65
- lcov --capture --initial --directory . --no-external --output-file build/coverage-base.info
+ # FIXME AFAICT, there's a bug on the deloyed version of GCC and GCOV in
66
+ # the ubuntu-24 runner. As a workaround we're adding
67
+ # --ignore-errors mismatch
68
+ lcov --capture --ignore-errors mismatch --initial --directory . --no-external --output-file build/coverage-base.info
69
(cd build; cmake --build . --target test)
70
lcov --capture --directory . --no-external --output-file build/coverage-run.info
71
(cd build; lcov --add-tracefile coverage-base.info --add-tracefile coverage-run.info --output-file coverage-combined.info)
0 commit comments