2018-06-14 19:01:35 +00:00
|
|
|
image: registry.gitlab.gnome.org/gnome/mutter/master:v1
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- build
|
2018-08-17 12:15:29 +00:00
|
|
|
- test
|
2018-06-14 19:01:35 +00:00
|
|
|
|
|
|
|
build-mutter:
|
|
|
|
stage: build
|
|
|
|
script:
|
2019-01-23 09:41:34 +00:00
|
|
|
- meson . build -Dbuildtype=debugoptimized -Degl_device=true -Dwayland_eglstream=true --werror
|
2018-06-14 19:01:35 +00:00
|
|
|
- ninja -C build
|
|
|
|
- ninja -C build install
|
2018-08-17 12:15:29 +00:00
|
|
|
|
|
|
|
test-mutter:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- meson . build -Degl_device=true -Dwayland_eglstream=true
|
|
|
|
- ninja -C build
|
|
|
|
- glib-compile-schemas $PWD/build/data
|
2018-11-22 17:20:58 +00:00
|
|
|
- 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
|