From 4dec344a7bcbf1d7d0bbbf985109df816470ecc6 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Fri, 27 Mar 2026 16:10:46 +0100 Subject: Stop builds for fedora 42, and start fedora44 --- build-containers/fedora42/Containerfile | 23 ----------------------- build-containers/fedora44/Containerfile | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 23 deletions(-) delete mode 100644 build-containers/fedora42/Containerfile create mode 100644 build-containers/fedora44/Containerfile (limited to 'build-containers') diff --git a/build-containers/fedora42/Containerfile b/build-containers/fedora42/Containerfile deleted file mode 100644 index c083322..0000000 --- a/build-containers/fedora42/Containerfile +++ /dev/null @@ -1,23 +0,0 @@ -FROM docker.io/library/fedora:42 - -RUN dnf install -y \ - make \ - clang \ - lld \ - curl \ - tar \ - gzip \ - gettext \ - gtk4-devel \ - libadwaita-devel \ - gtksourceview5-devel \ - pkg-config \ - && dnf clean all - -# Install rust toolchain -RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y -ENV PATH="/root/.cargo/bin:${PATH}" - -# Install cargo-generate-rpm -RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash \ - && cargo binstall cargo-generate-rpm --no-confirm diff --git a/build-containers/fedora44/Containerfile b/build-containers/fedora44/Containerfile new file mode 100644 index 0000000..fb54803 --- /dev/null +++ b/build-containers/fedora44/Containerfile @@ -0,0 +1,24 @@ +FROM docker.io/library/fedora:44 + +RUN dnf install -y \ + make \ + clang \ + lld \ + curl \ + tar \ + gzip \ + gettext \ + gtk4-devel \ + libadwaita-devel \ + gtksourceview5-devel \ + pkg-config \ + && dnf clean all + +# Install rust toolchain +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" + +# Install cargo-generate-rpm +RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash \ + && cargo binstall cargo-generate-rpm --no-confirm + -- cgit