From a95ae0c1823653566343f4c6b0d78d0fe7317c21 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Thu, 13 Jun 2019 16:35:09 +0100 Subject: [PATCH] ci: Temporarily disable code coverage support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit lcov in F30 doesn’t support gcc in F30, which seems like a fairly massive oversight. Signed-off-by: Philip Withnall --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ee1de33..426edbf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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