Skip to content

Commit 87b5ebd

Browse files
committed
ci: update Codecov ignore patterns for coverage reporting
- Changed the ignored directory from "third_party/*" to "src/detail/third_party/*" in the Codecov configuration. Signed-off-by: Y.Hisaki <yhisaki31@gmail.com>
1 parent 64ffd68 commit 87b5ebd

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.codecov.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ coverage:
33
round: down
44
range: "70...100"
55
ignore:
6-
- "third_party/*"
7-
- "gallery/*"
8-
- "test/*"
6+
- "src/detail/third_party"
7+
- "gallery"
8+
- "test"

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,18 +117,17 @@ jobs:
117117
- name: Generate coverage report
118118
run: |
119119
xvfb-run -a --server-args="-screen 0 1024x768x24 -ac +extension GLX +render -noreset" make coverage
120+
ls -la
120121
121122
- name: Upload coverage to Codecov
122123
uses: codecov/codecov-action@v5
123124
with:
124125
token: ${{ secrets.CODECOV_TOKEN }}
125-
files: ./build-coverage/coverage_filtered.info
126+
files: build-coverage/coverage_filtered.info
126127
fail_ci_if_error: true
127128

128129
- name: Upload HTML coverage reports
129130
uses: actions/upload-artifact@v4
130131
with:
131132
name: coverage-report
132-
path: |
133-
build-coverage/coverage_filtered.info
134-
coverage/
133+
path: coverage

0 commit comments

Comments
 (0)