From: Jana Babovakova Date: Wed, 26 Mar 2025 12:26:18 +0000 (+0100) Subject: CI: Added Fedora 41, Fedora 42. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba47c231dfee75f4242152c592796bac0ce73629;p=thirdparty%2Fbird.git CI: Added Fedora 41, Fedora 42. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7634f46a5..462915ba8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -330,6 +330,16 @@ pkg-fedora-34-amd64: needs: [build-fedora-34-amd64] image: registry.nic.cz/labs/bird:fedora-34-amd64 +pkg-fedora-41-amd64: + <<: *pkg-rpm + needs: [build-fedora-41-amd64] + image: registry.nic.cz/labs/bird:fedora-41-amd64 + +pkg-fedora-42-amd64: + <<: *pkg-rpm + needs: [build-fedora-42-amd64] + image: registry.nic.cz/labs/bird:fedora-42-amd64 + #pkg-centos-7-amd64: # <<: *pkg-rpm-wa # variables: diff --git a/misc/docker/fedora-41-amd64/Dockerfile b/misc/docker/fedora-41-amd64/Dockerfile new file mode 100644 index 000000000..e3f3a89b5 --- /dev/null +++ b/misc/docker/fedora-41-amd64/Dockerfile @@ -0,0 +1,18 @@ +FROM fedora:41 +RUN dnf -y upgrade +RUN dnf -y install \ + gcc \ + make \ + flex \ + bison \ + autoconf \ + libssh-devel \ + ncurses-devel \ + readline-devel +RUN dnf -y install \ + git \ + rpm-build \ + systemd-rpm-macros \ + python3 \ + python3-pip \ + python3-setuptools diff --git a/misc/docker/fedora-42-amd64/Dockerfile b/misc/docker/fedora-42-amd64/Dockerfile new file mode 100644 index 000000000..3b6acac9b --- /dev/null +++ b/misc/docker/fedora-42-amd64/Dockerfile @@ -0,0 +1,18 @@ +FROM fedora:42 +RUN dnf -y upgrade +RUN dnf -y install \ + gcc \ + make \ + flex \ + bison \ + autoconf \ + libssh-devel \ + ncurses-devel \ + readline-devel +RUN dnf -y install \ + git \ + rpm-build \ + systemd-rpm-macros \ + python3 \ + python3-pip \ + python3-setuptools