mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2025-01-20 16:01:53 +00:00
bird: builds with ubuntu 18.04 and 19.04 were added
This commit is contained in:
parent
eb3e2ec6a9
commit
65f1e23fcc
@ -136,6 +136,16 @@ docker_ubuntu-16_04-amd64:
|
|||||||
IMG_NAME: "ubuntu-16.04-amd64"
|
IMG_NAME: "ubuntu-16.04-amd64"
|
||||||
<<: *docker_build
|
<<: *docker_build
|
||||||
|
|
||||||
|
docker_ubuntu-18_04-amd64:
|
||||||
|
variables:
|
||||||
|
IMG_NAME: "ubuntu-18.04-amd64"
|
||||||
|
<<: *docker_build
|
||||||
|
|
||||||
|
docker_ubuntu-19_04-amd64:
|
||||||
|
variables:
|
||||||
|
IMG_NAME: "ubuntu-19.04-amd64"
|
||||||
|
<<: *docker_build
|
||||||
|
|
||||||
.build: &build-base
|
.build: &build-base
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
@ -239,6 +249,14 @@ build-ubuntu-16_04-amd64:
|
|||||||
<<: *build-linux
|
<<: *build-linux
|
||||||
image: registry.labs.nic.cz/labs/bird:ubuntu-16.04-amd64
|
image: registry.labs.nic.cz/labs/bird:ubuntu-16.04-amd64
|
||||||
|
|
||||||
|
build-ubuntu-18_04-amd64:
|
||||||
|
<<: *build-linux
|
||||||
|
image: registry.labs.nic.cz/labs/bird:ubuntu-18.04-amd64
|
||||||
|
|
||||||
|
build-ubuntu-19_04-amd64:
|
||||||
|
<<: *build-linux
|
||||||
|
image: registry.labs.nic.cz/labs/bird:ubuntu-19.04-amd64
|
||||||
|
|
||||||
build-freebsd-11-amd64:
|
build-freebsd-11-amd64:
|
||||||
<<: *build-base
|
<<: *build-base
|
||||||
tags:
|
tags:
|
||||||
|
12
misc/docker/ubuntu-18.04-amd64/Dockerfile
Normal file
12
misc/docker/ubuntu-18.04-amd64/Dockerfile
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
FROM ubuntu:18.04
|
||||||
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
RUN sed -i 's/deb.debian.org/ftp.cz.debian.org/' /etc/apt/sources.list
|
||||||
|
RUN apt-get -y update
|
||||||
|
RUN apt-get -y upgrade
|
||||||
|
RUN apt-get -y install \
|
||||||
|
autoconf \
|
||||||
|
build-essential \
|
||||||
|
flex \
|
||||||
|
bison \
|
||||||
|
ncurses-dev \
|
||||||
|
libreadline-dev
|
12
misc/docker/ubuntu-19.04-amd64/Dockerfile
Normal file
12
misc/docker/ubuntu-19.04-amd64/Dockerfile
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
FROM ubuntu:19.04
|
||||||
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
|
RUN sed -i 's/deb.debian.org/ftp.cz.debian.org/' /etc/apt/sources.list
|
||||||
|
RUN apt-get -y update
|
||||||
|
RUN apt-get -y upgrade
|
||||||
|
RUN apt-get -y install \
|
||||||
|
autoconf \
|
||||||
|
build-essential \
|
||||||
|
flex \
|
||||||
|
bison \
|
||||||
|
ncurses-dev \
|
||||||
|
libreadline-dev
|
Loading…
Reference in New Issue
Block a user