Skip to content

Commit

Permalink
Generate coverage reports zip in CI build.
Browse files Browse the repository at this point in the history
  • Loading branch information
fragglet committed Dec 9, 2024
1 parent 6099acb commit c599562
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ jobs:
- name: make check
run: |
make -j check || (cat test/test-suite.log; false)
- name: Generate coverage reports
run: |
mkdir artifacts
tar cf - lib/*.gcov src/*.gcov | tar -C artifacts -xf -
- name: Upload coverage-annotated source files
uses: actions/upload-artifact@v4
with:
path: "artifacts"
name: coverage_reports

valgrind_build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit c599562

Please sign in to comment.