Skip to content

Commit

Permalink
Fix the coverage job (#136)
Browse files Browse the repository at this point in the history
* try to remove .o files after unit test run in coverage job

* report size

* try azure

* pipe

* pr

* azure: build and run

* names

* use find to delete .o files

* remove azure config
  • Loading branch information
paulgessinger authored Apr 24, 2020
1 parent 955e60d commit 3adfa46
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
run: cmake --build build --
- name: Unit tests
run: cmake --build build -- test
- name: Remove .o files
run: >
du -sh build
&& find build -name *.o -delete
&& du -sh build
- name: Coverage
run: >
pip3 install gcovr
Expand Down

0 comments on commit 3adfa46

Please sign in to comment.