From 0b05832e25d3e8899e9bd361ce415cd3f068ec05 Mon Sep 17 00:00:00 2001 From: Matous Holinka Date: Mon, 25 Nov 2019 12:30:09 +0100 Subject: [PATCH] bird: another distros (opensuse 15.0 + 15.1) were added --- .gitlab-ci.yml | 24 ++++++++++++++++++++++ misc/docker/opensuse-15.0-amd64/Dockerfile | 11 ++++++++++ misc/docker/opensuse-15.1-amd64/Dockerfile | 11 ++++++++++ 3 files changed, 46 insertions(+) create mode 100644 misc/docker/opensuse-15.0-amd64/Dockerfile create mode 100644 misc/docker/opensuse-15.1-amd64/Dockerfile diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0d4c6e71..6026542a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 index 00000000..b1faff40 --- /dev/null +++ b/misc/docker/opensuse-15.0-amd64/Dockerfile @@ -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 index 00000000..29d956cf --- /dev/null +++ b/misc/docker/opensuse-15.1-amd64/Dockerfile @@ -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