diff options
author | Ondrej Holy <oholy@redhat.com> | 2021-02-12 09:22:59 +0100 |
---|---|---|
committer | Ondrej Holy <oholy@redhat.com> | 2021-02-12 16:08:04 +0000 |
commit | 2b77a7f50e75c7c8884203169acbfeda6ee3c1f0 (patch) | |
tree | f54703331e34d21ed6e2431b0d27d429ee544e72 /.gitlab | |
parent | 197bc1667f1abdfde81f96257592814562a0b117 (diff) | |
download | nautilus-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.
Diffstat (limited to '.gitlab')
-rw-r--r-- | .gitlab/Dockerfile | 10 |
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 |