0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-18 19:35:20 +00:00

bird: another distros (opensuse 15.0 + 15.1) were added

This commit is contained in:
Matous Holinka 2019-11-25 12:30:09 +01:00
parent ab5a3b89b3
commit 0b05832e25
3 changed files with 46 additions and 0 deletions

View 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:

View File

@ -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

View File

@ -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