mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
44d574e176
The fedora job was there before the flatpak job. But now we relies on flatpak job and the fedora job doesn't really give much benefits. It is rather waste of runners and maintainers time. Let's remove it.
14 lines
375 B
Docker
14 lines
375 B
Docker
FROM fedora:latest
|
|
|
|
RUN dnf install --nogpg -y dnf-plugins-core findutils git \
|
|
&& 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
|