add a separate cmake configuration for code coverage builds

This commit is contained in:
water
2020-09-08 19:15:38 -04:00
parent 699270c00c
commit c9e99b8ebe
5 changed files with 19 additions and 7 deletions
+3 -3
View File
@@ -34,14 +34,14 @@ jobs:
- name: CMake Generation
run: |
cmake --version
cmake -B build
cmake -B build -DCODE_COVERAGE=ON
- name: Build Project
run: |
cd build
make -j2
make -j
- name: Run Tests
timeout-minutes: 5
run: ./test.sh
run: ./test_code_coverage.sh
- name: Coveralls
uses: coverallsapp/github-action@master
with: