]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
CI: Added OpenSuse Leap 15.4, 15.5 .
authorJana Babovakova <babovakova.jana@gmail.com>
Wed, 26 Mar 2025 13:43:26 +0000 (14:43 +0100)
committerJana Babovakova <babovakova.jana@gmail.com>
Wed, 26 Mar 2025 13:43:26 +0000 (14:43 +0100)
.gitlab-ci.yml
misc/docker/opensuse-15.4-amd640/Dockerfile [new file with mode: 0644]
misc/docker/opensuse-15.5-amd64/Dockerfile [new file with mode: 0644]

index 104ccfe6832a9bd802aad83b7cf015abd8316c0b..251055f7c3656297be016e104f4ecadb476609e2 100644 (file)
@@ -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 (file)
index 0000000..bfdf28f
--- /dev/null
@@ -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 (file)
index 0000000..45a0169
--- /dev/null
@@ -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