Skip to content

Commit

Permalink
ignore error
Browse files Browse the repository at this point in the history
  • Loading branch information
TimSiebert1 committed Dec 21, 2024
1 parent 4a01b02 commit d536e5f
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ jobs:

- uses: actions/checkout@v4

- name: Prepare for Coverage
run: |
find . -name '*.gcda' -o -name '*.gcno' -delete
make clean
- name: Install lcov
run: |
sudo apt-get update
Expand Down Expand Up @@ -48,9 +43,9 @@ jobs:
- name: Generate coverage report
run: |
cd build
lcov --capture --directory . --output-file coverage.info
lcov --capture --directory . --output-file coverage.info --ignore-errors mismatch
lcov --remove coverage.info '/usr/*' 'boost/*' 'c++11/*' --output-file coverage.info
lcov --list coverage.info
lcov --list coverage.info
# Upload coverage report to Codecov
- name: Upload coverage to Codecov
Expand Down

0 comments on commit d536e5f

Please sign in to comment.