summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2021-02-12 09:22:59 +0100
committerOndrej Holy <oholy@redhat.com>2021-02-12 16:08:04 +0000
commit2b77a7f50e75c7c8884203169acbfeda6ee3c1f0 (patch)
treef54703331e34d21ed6e2431b0d27d429ee544e72
parent197bc1667f1abdfde81f96257592814562a0b117 (diff)
downloadnautilus-2b77a7f50e75c7c8884203169acbfeda6ee3c1f0.tar.gz
ci: Add gnome-autoar master to Dockerfile
The CI currently fails because the gnome-autoar 0.3.0 is not yet in rawhide. Let's add gnome-autoar master to our image to fix the pipeline.
-rw-r--r--.gitlab/Dockerfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab/Dockerfile b/.gitlab/Dockerfile
index bdc6e0b34..6593585f3 100644
--- a/.gitlab/Dockerfile
+++ b/.gitlab/Dockerfile
@@ -4,3 +4,13 @@ RUN dnf install --nogpg -y dnf-plugins-core uncrustify findutils git libportal-d
&& dnf builddep --nogpg -y nautilus \
&& dnf clean all
+RUN dnf install --nogpg -y gnome-common \
+ && dnf builddep --nogpg -y gnome-autoar \
+ && dnf clean all \
+ && git clone --depth 1 https://gitlab.gnome.org/GNOME/gnome-autoar.git \
+ && cd gnome-autoar \
+ && ./autogen.sh --prefix /usr \
+ && make \
+ && make install \
+ && cd .. \
+ && rm -rf gnome-autoar