Skip to content

Commit 49e1643

Browse files
committed
debugging ci
1 parent 1f4f683 commit 49e1643

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,13 @@ jobs:
3434
run: ctest --test-dir build --output-on-failure
3535

3636
- name: Capture coverage
37-
run: lcov -d build -c -o coverage.info
37+
run: |
38+
cd build
39+
# TODO: remove
40+
find . -name '*.gcda'
41+
lcov -d . -c -o coverage.info
42+
# move the report back up so the next steps can find it
43+
mv coverage.info ..
3844
3945
- name: Filter coverage
4046
run: lcov -r coverage.info '/usr/*' '*/test/*' -o coverage.filtered.info

0 commit comments

Comments
 (0)