From 5a0466f2732d0481a2848db2cf6e51d36141354e Mon Sep 17 00:00:00 2001 From: Emmett Lalish Date: Sat, 23 Nov 2024 10:04:31 -0800 Subject: [PATCH 1/2] restrict again --- .github/workflows/manifold.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/manifold.yml b/.github/workflows/manifold.yml index 79479f185..61e87ac93 100644 --- a/.github/workflows/manifold.yml +++ b/.github/workflows/manifold.yml @@ -79,6 +79,7 @@ jobs: - uses: codecov/codecov-action@v5 if: matrix.parallelization == 'OFF' with: + disable_search: true files: build/code_coverage.info fail_ci_if_error: false name: ${{matrix.parallelization}} From b73ab6d1aa5807a82d2d20ca0a7ba1cc2d9c535c Mon Sep 17 00:00:00 2001 From: Emmett Lalish Date: Sat, 23 Nov 2024 10:32:29 -0800 Subject: [PATCH 2/2] switch from remove to extract --- .github/workflows/manifold.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manifold.yml b/.github/workflows/manifold.yml index 61e87ac93..61cc8d7c0 100644 --- a/.github/workflows/manifold.yml +++ b/.github/workflows/manifold.yml @@ -74,7 +74,7 @@ jobs: cd ../ lcov --capture --gcov-tool gcov-${{ matrix.gcc }} --ignore-errors mismatch --directory . --output-file ./code_coverage_test.info lcov --add-tracefile ./code_coverage_init.info --add-tracefile ./code_coverage_test.info --output-file ./code_coverage_total.info - lcov --remove ./code_coverage_total.info "/usr/*" "/*/test/*" "/*/extras/*" "/*/bindings/*" "/*/include/*" --output-file ./code_coverage.info + lcov --extract ./code_coverage_total.info "/*/manifold/src/*" --output-file ./code_coverage.info cd ../ - uses: codecov/codecov-action@v5 if: matrix.parallelization == 'OFF'