From 4789ada83451b8c7e35e6cd5d8564c02ea7c79c5 Mon Sep 17 00:00:00 2001 From: "jabber.developer2" Date: Mon, 19 Jan 2026 16:29:38 +0300 Subject: [PATCH] ci: fix deprecated lcov option Change lcov_branch_coverage to branch_coverage (new syntax) --- .github/workflows/ci-code.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-code.yml b/.github/workflows/ci-code.yml index 25b2f957..3614c790 100644 --- a/.github/workflows/ci-code.yml +++ b/.github/workflows/ci-code.yml @@ -114,12 +114,12 @@ jobs: make check || true make check-functional-parallel || true lcov --capture --directory . --output-file /coverage/coverage.info \ - --rc lcov_branch_coverage=1 \ + --rc branch_coverage=1 \ --ignore-errors inconsistent lcov --remove /coverage/coverage.info \ "/usr/include/*" "*/tests/*" \ --output-file /coverage/coverage.info \ - --rc lcov_branch_coverage=1 \ + --rc branch_coverage=1 \ --ignore-errors inconsistent,empty,unused ' - name: Upload coverage to Codecov