Skip to content

Commit 1d5cd3e

Browse files
author
Artem Ermoshkin
committed
fix duplicate line merges
1 parent bebba2e commit 1d5cd3e

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/actions/gcovr/run_gcovr.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ gcovr_args=(
1616
--json-summary "${OUTPUT_DIR}/summary.json"
1717
--html --html-details
1818
-o "${OUTPUT_DIR}/index.html"
19-
--cobertura "${OUTPUT_DIR}/cobertura.xml"
19+
--lcov "${OUTPUT_DIR}/coverage.lcov"
2020
--exclude '.*contrib/.*'
2121
--exclude '.*tests/.*'
2222
--exclude '.*/_deps/.*'

.github/workflows/coverage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ jobs:
7474
uses: codecov/codecov-action@v5
7575
with:
7676
use_oidc: true
77-
files: build/coverage/cobertura.xml
77+
files: build/coverage/coverage.lcov
7878
disable_search: true
79+
plugins: noop
7980
flags: sdk
8081
name: ydb-cpp-sdk
8182
fail_ci_if_error: true

0 commit comments

Comments
 (0)