summaryrefslogtreecommitdiff
path: root/.gitlab/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab/Dockerfile')
-rw-r--r--.gitlab/Dockerfile38
1 files changed, 0 insertions, 38 deletions
diff --git a/.gitlab/Dockerfile b/.gitlab/Dockerfile
deleted file mode 100644
index 69cd3414f..000000000
--- a/.gitlab/Dockerfile
+++ /dev/null
@@ -1,38 +0,0 @@
-FROM fedora:latest
-
-RUN dnf install --nogpg -y dnf-plugins-core findutils git libportal-devel tracker3-miners python3-gobject dbus-daemon libhandy1-devel \
- && 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 \
- && meson . _build --prefix=/usr \
- && ninja -C _build \
- && ninja -C _build install \
- && cd .. \
- && rm -rf gnome-autoar
-
-RUN dnf builddep --nogpg -y libhandy \
- && dnf clean all \
- && git clone --depth 1 https://gitlab.gnome.org/GNOME/libhandy.git \
- && cd libhandy \
- && meson . _build --prefix=/usr \
- && ninja -C _build \
- && ninja -C _build install \
- && cd .. \
- && rm -rf libhandy
-
-RUN dnf builddep --nogpg -y uncrustify \
- && dnf clean all \
- && git clone --depth 1 https://github.com/uncrustify/uncrustify.git \
- && cd uncrustify \
- && mkdir build \
- && cd build \
- && cmake -DCMAKE_INSTALL_PREFIX=/usr .. \
- && make \
- && make install \
- && cd ../.. \
- && rm -rf uncrustify