blob: 1c615e6bbd0dff128d823517e6e803b778a69ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
image: fedora:rawhide
stages:
- test
before_script:
- dnf install -y gcc meson gettext itstool redhat-rpm-config git
gtk3-devel gnome-autoar-devel gnome-desktop3-devel
gobject-introspection-devel libselinux-devel
libxml2-devel tracker-devel desktop-file-utils
libgexiv2-devel gcovr
# Coverage data contains paths relative to the build directory,
# so changing to it makes writing filter expressions easier.
#
# _build/src/ contains generated sources, so that is filtered out as well.
test:
stage: test
script:
- meson _build . -Db_coverage=true -Ddisplay-tests=false
- cd _build
- ninja test
# git blame me and read the log. ;)
# - gcovr --root=.
# --exclude=src/
# --exclude=../data/
# --exclude=../eel/check-program.c
# --exclude=../eel/eel-debug.c
# --exclude=../eel/eel-lib-self-check-functions.c
# --exclude=../eel/eel-self-checks.c
# --exclude=../src/animation/
# --exclude=../src/gtk/
# --exclude=../src/nautilus-lib-self-check-functions.c
# --exclude=../src/nautilus-self-check-functions.c
# --exclude=../subprojects/libgd/
# --exclude=../test/
# coverage: '/^TOTAL.*\s+(\d+\%)$/'
|