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.
This commit is contained in:
Marco Trevisan (Treviño)
2023-03-15 16:16:37 +01:00
parent e7ca05e1bf
commit 5e98f10011

View File

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