Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ananthu3375 authored Jun 24, 2024
1 parent c3be1c0 commit d110fda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,13 +274,13 @@ jobs:
if: ${{ runner.os != 'Windows' && matrix.build_type == 'Debug' }}
run: |
mkdir -p build/coverage
find ./build -name "*.gcno" -o -name "*.gcda"
find ./build -name "*.gcno" -o -name "*.gcda" > /dev/null
gcovr --config doc/coverage/gcovr.cfg --gcov-executable '${{ matrix.gcov_executable }}' --merge-mode-functions=merge-use-line-0 --verbose
- name: Debug gcov
if: ${{ runner.os != 'Windows' && matrix.build_type == 'Debug' }}
run: |
find ./build -name "*.gcno" -exec gcov -o {} \;
find ./build -name "*.gcno" -exec gcov -o {} \; > /dev/null
- name: Publish to codecov
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit d110fda

Please sign in to comment.