summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorJosé Expósito <jose.exposito89@gmail.com>2021-09-15 18:37:43 +0200
committerMarge Bot <marge-bot@gnome.org>2021-12-02 20:48:24 +0000
commitc3087dae7de320224b954e19b4dd3acfc03b649a (patch)
treefd32434c756c522c46c59213bdef43aea7034341 /.gitlab-ci.yml
parent7b83735aeac48514e55749e6629003b237919d23 (diff)
downloadmutter-c3087dae7de320224b954e19b4dd3acfc03b649a.tar.gz
ci: Install libinput and wayland-protocols from git
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1830>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 260cff498..77d322f0b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,7 +17,7 @@ variables:
.mutter.fedora:34@common:
variables:
FDO_DISTRIBUTION_VERSION: 34
- BASE_TAG: '2021-09-04.1'
+ BASE_TAG: '2021-09-15.0'
FDO_DISTRIBUTION_PACKAGES:
asciidoc
clang
@@ -34,6 +34,8 @@ variables:
dnf builddep -y mutter --setopt=install_weak_deps=False &&
dnf builddep -y gnome-shell --setopt=install_weak_deps=False &&
+ dnf builddep -y libinput --setopt=install_weak_deps=False &&
+ dnf builddep -y wayland-protocols --setopt=install_weak_deps=False &&
./.gitlab-ci/install-meson-project.sh \
https://gitlab.gnome.org/GNOME/glib.git \
@@ -47,6 +49,14 @@ variables:
https://gitlab.gnome.org/GNOME/gjs.git \
1.69.2 . &&
+ ./.gitlab-ci/install-meson-project.sh \
+ https://gitlab.freedesktop.org/libinput/libinput.git \
+ 1.19.0 . &&
+
+ ./.gitlab-ci/install-meson-project.sh \
+ https://gitlab.freedesktop.org/wayland/wayland-protocols.git \
+ 1.23 . &&
+
rpm -e --nodeps gnome-bluetooth-libs-devel \
mutter mutter-devel \
gnome-shell &&