Commit 0b05832e authored by Matous Holinka's avatar Matous Holinka
Browse files

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

parent ab5a3b89
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
@@ -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:
+11 −0
Original line number Diff line number Diff line
FROM opensuse/leap:15.0
RUN zypper -n up
RUN zypper -n install \
	autoconf \
	flex \
	bison \
	pkgconfig \
	readline-devel \
	ncurses-devel \
	gcc \
	gmake
+11 −0
Original line number Diff line number Diff line
FROM opensuse/leap:15.1
RUN zypper -n up
RUN zypper -n install \
	autoconf \
	flex \
	bison \
	pkgconfig \
	readline-devel \
	ncurses-devel \
	gcc \
	gmake