Make coverage optional for debug builds by introducing CHAOS_COVERAGE

flag.
This commit is contained in:
hashlag
2026-07-06 02:44:37 +03:00
parent f9dbca34c7
commit e0768cde3c
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ jobs:
- name: Configure and build tests [Debug]
run: |
mkdir build-debug
cmake -S . -B build-debug/ -D CMAKE_BUILD_TYPE=Debug
cmake -S . -B build-debug/ -D CMAKE_BUILD_TYPE=Debug -D CHAOS_COVERAGE=ON
cmake --build build-debug/ -t ChaosTests
- name: Configure and build benchmarks [Release]