1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-12-04 20:07:36 +00:00

ci: Fix regex for reporting code coverage

We are now using gcovr instead of lcov after
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=987818
has been closed.

The difference in output format tripped up reported code coverage in CI.
This commit is contained in:
Evangelos Ribeiro Tzaras 2021-11-24 14:07:37 +01:00
parent a28d694623
commit 7402cae903

View file

@ -47,7 +47,7 @@ test:native:
- xvfb-run -s -noreset ninja -C _build test
- cp _build/src/libcalls-vala.a.p/*.c _build
- ninja -C _build coverage
coverage: '/^\s+lines\.+:\s+([\d.]+\%)\s+/'
coverage: '/^lines:\s+([\d.]+\%)\s+/'
build-gtkdoc:
extends: build:native