diff options
author | Georges Basile Stavracas Neto <georges.stavracas@gmail.com> | 2020-03-26 18:23:26 -0300 |
---|---|---|
committer | Georges Basile Stavracas Neto <georges.stavracas@gmail.com> | 2020-03-26 18:24:54 -0300 |
commit | 51cd8aed967541ed1bbe797ee1c4b80ca95584d4 (patch) | |
tree | f18330b459d5b29c29aef4e00366972248458471 /.gitlab-ci.yml | |
parent | ac01e69a67642d255525e1a428a88a0bb6efc957 (diff) | |
download | mutter-51cd8aed967541ed1bbe797ee1c4b80ca95584d4.tar.gz |
ci: Add a new 'build-without-opengl-and-glx' step
To make sure we don't regress with this specific set of flags.
https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1151
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ea2ad98c9..0db8f061b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,6 +28,20 @@ build-mutter: - merge_requests - /^.*$/ +build-without-opengl-and-glx: + stage: build + script: + - meson . build -Dbuildtype=debugoptimized -Dopengl=false -Dglx=false -Degl_device=true -Dwayland_eglstream=true --werror --prefix /usr + - ninja -C build + - ninja -C build install + artifacts: + expire_in: 1 day + paths: + - build + only: + - merge_requests + - /^.*$/ + build-without-native-backend-and-wayland: stage: build script: |