Don't set b_coverage by default
The coverage tracker tinkers with the binary leaving traces behind even in release builds.
This commit is contained in:
parent
d9cbf47036
commit
221a6afe2a
2 changed files with 1 additions and 2 deletions
|
@ -7,7 +7,7 @@ steps:
|
|||
image: arminfriedl/xwim-build
|
||||
commands:
|
||||
- meson wrap install gtest
|
||||
- meson build
|
||||
- meson build -Db_coverage=true
|
||||
- ninja -C build
|
||||
- ninja -C build test && ninja -C build coverage
|
||||
- echo "******** TEST LOGS ***********"
|
||||
|
|
|
@ -2,7 +2,6 @@ project('xwim', 'cpp',
|
|||
version: '0.3',
|
||||
default_options: ['cpp_std=c++17',
|
||||
'warning_level=3',
|
||||
'b_coverage=true',
|
||||
'b_ndebug=if-release'])
|
||||
|
||||
subdir('src')
|
||||
|
|
Loading…
Reference in a new issue