From: Jana Babovakova Date: Wed, 26 Mar 2025 13:43:26 +0000 (+0100) Subject: CI: Added OpenSuse Leap 15.4, 15.5 . X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70083bba96e7c222e70711c0b40dc9bac1be52df;p=thirdparty%2Fbird.git CI: Added OpenSuse Leap 15.4, 15.5 . --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 104ccfe68..251055f7c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -180,6 +180,14 @@ build-opensuse-15.3-amd64: <<: *build-linux image: registry.nic.cz/labs/bird:opensuse-15.3-amd64 +build-opensuse-15.4-amd64: + <<: *build-linux + image: registry.nic.cz/labs/bird:opensuse-15.4-amd64 + +build-opensuse-15.5-amd64: + <<: *build-linux + image: registry.nic.cz/labs/bird:opensuse-15.5-amd64 + #build-freebsd-11-amd64: # <<: *build-base # tags: @@ -441,6 +449,15 @@ pkg-opensuse-15.3-amd64: needs: [build-opensuse-15.3-amd64] image: registry.nic.cz/labs/bird:opensuse-15.3-amd64 +pkg-opensuse-15.4-amd64: + <<: *pkg-rpm-wa + needs: [build-opensuse-15.4-amd64] + image: registry.nic.cz/labs/bird:opensuse-15.4-amd64 + +pkg-opensuse-15.5-amd64: + <<: *pkg-rpm-wa + needs: [build-opensuse-15.5-amd64] + image: registry.nic.cz/labs/bird:opensuse-15.5-amd64 build-netlab: stage: build diff --git a/misc/docker/opensuse-15.4-amd640/Dockerfile b/misc/docker/opensuse-15.4-amd640/Dockerfile new file mode 100644 index 000000000..bfdf28f57 --- /dev/null +++ b/misc/docker/opensuse-15.4-amd640/Dockerfile @@ -0,0 +1,19 @@ +FROM opensuse/leap:15.4 +RUN zypper -n up +RUN zypper -n install \ + gcc \ + make \ + flex \ + bison \ + autoconf \ + libssh-devel \ + ncurses-devel \ + readline-devel +RUN zypper -n install \ + git \ + rpm-build \ + systemd \ + systemd-rpm-macros \ + python3 \ + python3-pip \ + python3-setuptools diff --git a/misc/docker/opensuse-15.5-amd64/Dockerfile b/misc/docker/opensuse-15.5-amd64/Dockerfile new file mode 100644 index 000000000..45a016949 --- /dev/null +++ b/misc/docker/opensuse-15.5-amd64/Dockerfile @@ -0,0 +1,19 @@ +FROM opensuse/leap:15.5 +RUN zypper -n up +RUN zypper -n install \ + gcc \ + make \ + flex \ + bison \ + autoconf \ + libssh-devel \ + ncurses-devel \ + readline-devel +RUN zypper -n install \ + git \ + rpm-build \ + systemd \ + systemd-rpm-macros \ + python3 \ + python3-pip \ + python3-setuptools