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
|
image: arminfriedl/xwim-build
|
||||||
commands:
|
commands:
|
||||||
- meson wrap install gtest
|
- meson wrap install gtest
|
||||||
- meson build
|
- meson build -Db_coverage=true
|
||||||
- ninja -C build
|
- ninja -C build
|
||||||
- ninja -C build test && ninja -C build coverage
|
- ninja -C build test && ninja -C build coverage
|
||||||
- echo "******** TEST LOGS ***********"
|
- echo "******** TEST LOGS ***********"
|
||||||
|
|
|
@ -2,7 +2,6 @@ project('xwim', 'cpp',
|
||||||
version: '0.3',
|
version: '0.3',
|
||||||
default_options: ['cpp_std=c++17',
|
default_options: ['cpp_std=c++17',
|
||||||
'warning_level=3',
|
'warning_level=3',
|
||||||
'b_coverage=true',
|
|
||||||
'b_ndebug=if-release'])
|
'b_ndebug=if-release'])
|
||||||
|
|
||||||
subdir('src')
|
subdir('src')
|
||||||
|
|
Loading…
Reference in a new issue