2019-06-26 05:19:24 -04:00
|
|
|
# Rebuild and push with
|
|
|
|
#
|
|
|
|
# cd .gitlab-ci/
|
2020-04-03 17:18:28 -04:00
|
|
|
# podman build --format docker --no-cache -t registry.gitlab.gnome.org/gnome/mutter/master:v4 .
|
|
|
|
# podman push registry.gitlab.gnome.org/gnome/mutter/master:v4
|
2019-06-26 05:19:24 -04:00
|
|
|
#
|
|
|
|
|
2020-04-03 17:18:28 -04:00
|
|
|
FROM fedora:32
|
2018-06-14 15:01:35 -04:00
|
|
|
|
|
|
|
RUN dnf -y update && dnf -y upgrade && \
|
|
|
|
dnf install -y 'dnf-command(builddep)' && \
|
2019-05-03 13:02:27 -04:00
|
|
|
dnf install -y 'dnf-command(copr)' && \
|
2020-01-14 03:44:45 -05:00
|
|
|
dnf copr enable -y jadahl/mutter-ci && \
|
2019-05-03 13:02:27 -04:00
|
|
|
|
2020-04-03 17:18:28 -04:00
|
|
|
dnf builddep -y mutter --setopt=install_weak_deps=False && \
|
2019-06-26 05:20:20 -04:00
|
|
|
|
2018-08-17 08:15:29 -04:00
|
|
|
# For running unit tests
|
2020-04-03 17:18:28 -04:00
|
|
|
dnf install -y xorg-x11-server-Xvfb mesa-dri-drivers dbus dbus-x11 \
|
2020-05-06 09:27:41 -04:00
|
|
|
'*/xvfb-run' gdm-lib accountsservice-libs gnome-control-center gcovr \
|
2020-08-07 10:11:22 -04:00
|
|
|
libnma python3-gobject python3-dbusmock \
|
2020-04-03 17:18:28 -04:00
|
|
|
--setopt=install_weak_deps=False && \
|
2018-08-17 08:15:29 -04:00
|
|
|
|
2019-05-03 13:02:27 -04:00
|
|
|
# GNOME Shell
|
|
|
|
dnf builddep -y gnome-shell --setopt=install_weak_deps=False && \
|
2020-04-03 17:18:28 -04:00
|
|
|
dnf remove -y gnome-bluetooth-libs-devel && \
|
2019-05-03 13:02:27 -04:00
|
|
|
dnf remove -y --noautoremove mutter mutter-devel && \
|
|
|
|
|
2018-06-14 15:01:35 -04:00
|
|
|
dnf clean all
|