summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 6237626cfb8ef30104a25d33d55cea73dba3ccad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
image: registry.gitlab.gnome.org/gnome/mutter/master:v1

stages:
 - build
 - test

build-mutter:
  stage: build
  script:
    - meson . build -Degl_device=true -Dwayland_eglstream=true
    - ninja -C build
    - ninja -C build install

test-mutter:
  stage: test
  script:
    - meson . build -Degl_device=true -Dwayland_eglstream=true
    - ninja -C build
    - glib-compile-schemas $PWD/build/data
    - env XDG_RUNTIME_DIR=/tmp/ GSETTINGS_SCHEMA_DIR=$PWD/build/data dbus-run-session -- xvfb-run -s '+iglx -noreset' meson test -C build -t 10 --verbose --no-stdsplit --wrap catchsegv