summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorMitya Selivanov <0x7fffff@guattari.ru>2022-08-09 22:17:32 +0400
committerMitya Selivanov <0x7fffff@guattari.ru>2022-08-09 22:17:32 +0400
commit9a316af04b56d3eee31b61f2eca17c0bb4181f96 (patch)
tree729e2da71b54b446f276a3ed9c24edb1cd4ab533 /.github
parent714991aa76a2db4632da7e8031b27a70099a579c (diff)
downloadkit-9a316af04b56d3eee31b61f2eca17c0bb4181f96.zip
[CI] test
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_and_test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index 50aad28..6bf6fdc 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -58,14 +58,14 @@ jobs:
working-directory: ${{ github.workspace }}/build
run: |
ctest -V -C $BUILD_TYPE
- gcovr --gcov-executable gcov-11 -j $(nproc) --delete --root ../source/ --exclude '\.\./source/test/' --print-summary --xml-pretty --xml coverage.xml .
+ gcovr -j $(nproc) --delete --root ../source/ --exclude '\.\./source/test/' --print-summary --xml-pretty --xml coverage.xml .
- name: Run tests & generate coverage on macOS
if: runner.os == 'macOS'
working-directory: ${{ github.workspace }}/build
run: |
ctest -V -C $BUILD_TYPE
- gcovr --gcov-executable gcov-11 -j 2 --delete --root ../source/ --exclude '\.\./source/test/' --print-summary --xml-pretty --xml coverage.xml .
+ gcovr -j 2 --delete --root ../source/ --exclude '\.\./source/test/' --print-summary --xml-pretty --xml coverage.xml .
- name: Run tests & generate coverage on Windows
if: runner.os == 'Windows'