We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a9da44 commit 854bcd2Copy full SHA for 854bcd2
.github/workflows/coverage.yml
@@ -64,9 +64,9 @@ jobs:
64
65
- name: Test for code coverage
66
run: |
67
- lcov --capture --initial --directory . --no-external --output-file build/coverage-base.info
+ lcov --gcov-tool gcov-14 --capture --initial --directory . --no-external --output-file build/coverage-base.info
68
(cd build; cmake --build . --target test)
69
- lcov --capture --directory . --no-external --output-file build/coverage-run.info
+ lcov --gcov-tool gcov-14 --capture --directory . --no-external --output-file build/coverage-run.info
70
(cd build; lcov --add-tracefile coverage-base.info --add-tracefile coverage-run.info --output-file coverage-combined.info)
71
72
- uses: codecov/codecov-action@v5
0 commit comments