Skip to content

Commit

Permalink
roll back to working CI
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Nov 13, 2023
1 parent 5b643a4 commit 27c4d4c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests_and_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ jobs:
shell: bash
run: |
cd ${{ runner.workspace }}/build
# gcovr -r . --filter='.*/clic/src/.*' --exclude-throw-branches --exclude-unreachable-branches --xml -o coverage.xml
lcov --base-directory . --directory . --capture --output-file coverage.info
lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' ''*/deps_/*' --output-file coverage.info
lcov --list coverage.info
gcovr -r . --filter='.*/clic/src/.*' --exclude-throw-branches --exclude-unreachable-branches --xml -o coverage.xml
# lcov --base-directory . --directory . --capture --output-file coverage.info
# lcov --remove coverage.info '/usr/*' "${HOME}"'/.cache/*' ''*/deps_/*' --output-file coverage.info
# lcov --list coverage.info
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ${{ runner.workspace }}/build/coverage.info
files: ${{ runner.workspace }}/build/coverage.xml
fail_ci_if_error: true # optional (default = false)

0 comments on commit 27c4d4c

Please sign in to comment.