mirror of
https://github.com/brl/mutter.git
synced 2024-11-12 17:27:03 -05:00
f795725aaf
Test runners might be slow, so use the test time multiplier 2 to avoid unnecessary pipeline failures.
25 lines
644 B
YAML
25 lines
644 B
YAML
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 2 --verbose --no-stdsplit --wrap catchsegv
|
|
artifacts:
|
|
paths:
|
|
- build/
|
|
when: on_failure
|