Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
xtofalex committed Oct 21, 2024
1 parent a6bd6e2 commit bb40f77
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,20 +45,19 @@ jobs:

- name: lcov
working-directory: ${{github.workspace}}/build
run: |
lcov --directory . --capture --output-file coverage.info
run: lcov --directory . --capture --output-file coverage.info
lcov --remove coverage.info --output-file coverage.info '/usr/*' '*/naja-verilog/test/*' '*/naja-verilog/thirdparty/*'
lcov --list coverage.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
directory: ${{github.workspace}}/build
#directory: ${{github.workspace}}/build
codecov_yml_path: ${{github.workspace}}/.codecov.yml
#env_vars: OS,PYTHON
fail_ci_if_error: true
file: coverage.info
file: ${{github.workspace}}/coverage.info
disable_search: true
flags: unittests
name: codecov-umbrella
Expand Down

0 comments on commit bb40f77

Please sign in to comment.