summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: bbe07c536a2eaeb3d38a273b746354af9aefe1b8 (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
image: fedora:27

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
    - 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+\%)$/'