a8e9f46ed8
This adds compilation testing using meson on the gitlab instance. It uses a prebuild image built, described in .gitlab-ci/Dockerfile, based on Fedora 29. The image is build and published by running: cd .gitlab-ci/ docker build -t registry.gitlab.gnome.org/gnome/mutter/master:v1 . docker push registry.gitlab.gnome.org/gnome/mutter/master:v1 Resolves: https://gitlab.gnome.org/GNOME/mutter/merge_requests/132
12 lines
227 B
YAML
12 lines
227 B
YAML
image: registry.gitlab.gnome.org/gnome/mutter/master:v1
|
|
|
|
stages:
|
|
- build
|
|
|
|
build-mutter:
|
|
stage: build
|
|
script:
|
|
- meson . build -Degl_device=true -Dwayland_eglstream=true
|
|
- ninja -C build
|
|
- ninja -C build install
|