chore: Try and ignore from source dir, not build dir
This commit is contained in:
parent
664e512a93
commit
65d6c36bed
|
|
@ -49,11 +49,11 @@ jobs:
|
||||||
working-directory: ${{github.workspace}}/build
|
working-directory: ${{github.workspace}}/build
|
||||||
run: |
|
run: |
|
||||||
lcov --directory . --capture --output-file coverage-raw.info
|
lcov --directory . --capture --output-file coverage-raw.info
|
||||||
lcov --remove coverage-raw.info '/usr/*' "$(pwd)/test/*" "$(pwd)/external/*" --output-file coverage.info
|
lcov --remove coverage-raw.info '/usr/*' "${{github.workspace}}/test/*" "${{github.workspace}}/external/*" --output-file coverage.info
|
||||||
lcov --list coverage.info
|
lcov --list coverage.info
|
||||||
|
|
||||||
- uses: coverallsapp/github-action@9ba913c152ae4be1327bfb9085dc806cedb44057
|
- uses: coverallsapp/github-action@9ba913c152ae4be1327bfb9085dc806cedb44057
|
||||||
name: Report code coverage
|
name: Upload code coverage report to Coveralls
|
||||||
with:
|
with:
|
||||||
path-to-lcov: ${{github.workspace}}/build/coverage.info
|
path-to-lcov: ${{github.workspace}}/build/coverage.info
|
||||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue