ci: Temporarily disable code coverage support

lcov in F30 doesn’t support gcc in F30, which seems like a fairly
massive oversight.

Signed-off-by: Philip Withnall <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2019-06-13 16:35:09 +01:00
parent cc53f88d8d
commit a95ae0c182
1 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,9 @@ fedora:
- git submodule update --init
- meson --buildtype debug --werror -Db_coverage=true -Ddocumentation=true _build .
- meson test -C _build
- ninja -C _build coverage
# FIXME: lcov doesn't support gcc9 yet:
# https://github.com/linux-test-project/lcov/issues/58
- ninja -C _build coverage || true
coverage: '/^\s+lines\.+:\s+([\d.]+\%)\s+/'
artifacts:
when: always