]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
bird: another distros (opensuse 15.0 + 15.1) were added
authorMatous Holinka <matous.holinka@nic.cz>
Mon, 25 Nov 2019 11:30:09 +0000 (12:30 +0100)
committerMatous Holinka <matous.holinka@nic.cz>
Mon, 25 Nov 2019 11:30:09 +0000 (12:30 +0100)
.gitlab-ci.yml
misc/docker/opensuse-15.0-amd64/Dockerfile [new file with mode: 0644]
misc/docker/opensuse-15.1-amd64/Dockerfile [new file with mode: 0644]

index 0d4c6e715392d1a4d0900b2a89ab80651d9f1758..6026542afd43f1384a9663794fdbb00e64df52a8 100644 (file)
@@ -146,6 +146,16 @@ docker_ubuntu-19_04-amd64:
     IMG_NAME: "ubuntu-19.04-amd64"
   <<: *docker_build
 
+docker_opensuse-15.0-amd64:
+  variables:
+    IMG_NAME: "opensuse-15.0-amd64"
+  <<: *docker_build
+
+docker_opensuse-15.1-amd64:
+  variables:
+    IMG_NAME: "opensuse-15.1-amd64"
+  <<: *docker_build
+
 # TODO We want to copy these BSDs to our own virtual machines, to make sure
 # someone doesn't update them by accident.
 .freebsd-11-i386: &freebsd-11-i386_env
@@ -273,6 +283,20 @@ build-ubuntu-19_04-amd64:
   <<: *build-linux
   image: registry.labs.nic.cz/labs/bird:ubuntu-19.04-amd64
 
+.opensuse-15.0-amd64: &opensuse-15.0-amd64_env
+  image: registry.labs.nic.cz/labs/bird:opensuse-15.0-amd64
+  tags:
+  - docker
+  - linux
+  - amd64
+
+.opensuse-15.1-amd64: &opensuse-15.1-amd64_env
+  image: registry.labs.nic.cz/labs/bird:opensuse-15.1-amd64
+  tags:
+  - docker
+  - linux
+  - amd64
+
 build-freebsd-11-amd64:
   <<: *build-base
   tags:
diff --git a/misc/docker/opensuse-15.0-amd64/Dockerfile b/misc/docker/opensuse-15.0-amd64/Dockerfile
new file mode 100644 (file)
index 0000000..b1faff4
--- /dev/null
@@ -0,0 +1,11 @@
+FROM opensuse/leap:15.0
+RUN zypper -n up
+RUN zypper -n install \
+       autoconf \
+       flex \
+       bison \
+       pkgconfig \
+       readline-devel \
+       ncurses-devel \
+       gcc \
+       gmake
diff --git a/misc/docker/opensuse-15.1-amd64/Dockerfile b/misc/docker/opensuse-15.1-amd64/Dockerfile
new file mode 100644 (file)
index 0000000..29d956c
--- /dev/null
@@ -0,0 +1,11 @@
+FROM opensuse/leap:15.1
+RUN zypper -n up
+RUN zypper -n install \
+       autoconf \
+       flex \
+       bison \
+       pkgconfig \
+       readline-devel \
+       ncurses-devel \
+       gcc \
+       gmake