summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2024-04-04 03:13:10 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2024-04-04 03:13:40 +0200
commit87c85fc81b7e806e235c70ae9e65280a560d78a5 (patch)
tree74b840eba1b6e3f6d81ec3cc776aad5503e2c7e8
parente429e682463cae93d38c30c0390549e58d13816f (diff)
ci: Ignore failures on coverage parsing
gcovr seems to have issues, but we can't fail on it
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c38ec5f..35a5aab 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -99,8 +99,8 @@ test_dev:
script:
- meson _build -Db_coverage=true
- 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
+ - cat _build/meson-logs/coverage.txt || true
artifacts:
expose_as: 'Coverage Report'
paths: