From 5e98f10011e89488aa8d73842e22dd0a7bd47e14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Wed, 15 Mar 2023 16:16:37 +0100 Subject: [PATCH] ci: Do not require coverage to always happen meson coverage could be broken in some cases, so let's ignore the error for now if it happens. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6991a48b..7991dedb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -73,8 +73,8 @@ test: - meson --werror -Ddrivers=all -Db_coverage=true . _build - ninja -C _build - meson test -C _build --print-errorlogs --no-stdsplit --timeout-multiplier 3 - - ninja -C _build coverage - - cat _build/meson-logs/coverage.txt + - ninja -C _build coverage || true # FIXME: always enable this once meson is fixed + - cat _build/meson-logs/coverage.txt || true artifacts: reports: junit: "_build/meson-logs/testlog.junit.xml"