Don't set b_coverage by default
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

The coverage tracker tinkers with the binary leaving traces behind even in
release builds.
This commit is contained in:
Armin Friedl 2020-08-03 06:40:34 +02:00
parent d9cbf47036
commit 221a6afe2a
Signed by: armin
GPG key ID: 48C726EEE7FBCBC8
2 changed files with 1 additions and 2 deletions

View file

@ -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 ***********"

View file

@ -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')