2019-06-26 09:19:24 +00:00
|
|
|
# Rebuild and push with
|
|
|
|
#
|
|
|
|
# cd .gitlab-ci/
|
2020-04-03 21:18:28 +00: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 09:19:24 +00:00
|
|
|
#
|
|
|
|
|
2020-04-03 21:18:28 +00:00
|
|
|
FROM fedora:32
|
2018-06-14 19:01:35 +00:00
|
|
|
|
|
|
|
RUN dnf -y update && dnf -y upgrade && \
|
|
|
|
dnf install -y 'dnf-command(builddep)' && \
|
2019-05-03 17:02:27 +00:00
|
|
|
dnf install -y 'dnf-command(copr)' && \
|
2020-01-14 08:44:45 +00:00
|
|
|
dnf copr enable -y jadahl/mutter-ci && \
|
2019-05-03 17:02:27 +00:00
|
|
|
|
2020-04-03 21:18:28 +00:00
|
|
|
dnf builddep -y mutter --setopt=install_weak_deps=False && \
|
2019-06-26 09:20:20 +00:00
|
|
|
|
2018-08-17 12:15:29 +00:00
|
|
|
# For running unit tests
|
2020-04-03 21:18:28 +00:00
|
|
|
dnf install -y xorg-x11-server-Xvfb mesa-dri-drivers dbus dbus-x11 \
|
2020-05-06 13:27:41 +00:00
|
|
|
'*/xvfb-run' gdm-lib accountsservice-libs gnome-control-center gcovr \
|
2020-04-03 21:18:28 +00:00
|
|
|
--setopt=install_weak_deps=False && \
|
2018-08-17 12:15:29 +00:00
|
|
|
|
2019-05-03 17:02:27 +00:00
|
|
|
# GNOME Shell
|
|
|
|
dnf builddep -y gnome-shell --setopt=install_weak_deps=False && \
|
2020-04-03 21:18:28 +00:00
|
|
|
dnf remove -y gnome-bluetooth-libs-devel && \
|
2019-05-03 17:02:27 +00:00
|
|
|
dnf remove -y --noautoremove mutter mutter-devel && \
|
|
|
|
|
2018-06-14 19:01:35 +00:00
|
|
|
dnf clean all
|