We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20754a5 commit 666e821Copy full SHA for 666e821
1 file changed
.github/workflows/ci.yml
@@ -32,13 +32,14 @@ jobs:
32
- name: Generate coverage (LCOV)
33
run: |
34
# Clean any stale traces first
35
- lcov --directory build --zerocounters
+ lcov --directory obj --directory bin --zerocounters
36
# Capture with matching gcov tool and stable options
37
- lcov --capture --directory build \
38
- --gcov-tool gcov-13 \
39
- --rc geninfo_unexecuted_blocks=1 \
40
- --ignore-errors mismatch,source \
41
- --output-file coverage.info
+ lcov --capture \
+ --directory obj \
+ --directory bin \
+ --gcov-tool gcov-13 \
+ --ignore-errors empty \
42
+ --output-file coverage.info
43
# (optional) keep only your code
44
lcov --remove coverage.info '/usr/*' '*/googletest/*' \
45
--output-file coverage.info
0 commit comments