From c1e2148ba610f064a6f5fbbfb9e066accd17721c Mon Sep 17 00:00:00 2001 From: Matheus Izvekov Date: Mon, 21 Jul 2025 18:20:27 -0300 Subject: [PATCH] ci: disable check_data_consistancy when generating coverage reports This works around a post-merge-only CI failure. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b4427cbc3..4de1ddf013 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -447,7 +447,7 @@ jobs: # Generate reports echo "Generate report: $dir" lcov --rc lcov_branch_coverage=0 --gcov-tool "$gcov_tool" --directory "$dir" --capture --output-file "$dir/all.info" --ignore-errors inconsistent - lcov --rc lcov_branch_coverage=0 --list "$dir/all.info" + lcov --rc lcov_branch_coverage=0 --ignore-errors inconsistent --list "$dir/all.info" # Upload to codecov echo "Upload to codecov: $dir"