2d4989e937
So far we are only performing a basic syntax check on javascript sources; it's time to test the C code as well. As mutter is tightly coupled, we bite the bullet and build it as well, either using a matching branch (if it exists), or current master. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/408
20 lines
688 B
Docker
20 lines
688 B
Docker
FROM registry.gitlab.gnome.org/gnome/mutter/master:v1
|
|
|
|
RUN dnf -y update && dnf -y upgrade && \
|
|
dnf install -y 'dnf-command(copr)' && \
|
|
dnf copr enable -y fmuellner/gnome-shell-ci && \
|
|
dnf builddep -y gnome-shell --setopt=install_weak_deps=False && \
|
|
|
|
# bt only exports HAVE_BLUETOOTH to js, rest are outdated build-requires
|
|
dnf remove -y gnome-bluetooth-libs-devel dbus-glib-devel \
|
|
upower-devel python3-devel && \
|
|
|
|
# We'll build mutter ourselves
|
|
dnf remove -y --noautoremove mutter mutter-devel && \
|
|
|
|
# Needed for tests
|
|
dnf install -y '*/xvfb-run' gdm-lib accountsservice-libs && \
|
|
|
|
dnf clean all && \
|
|
rm -rf /var/cache/dnf
|