1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

CI/CD: some latest releases added.

/misc/docker/:
+ debian 11 (i386+amd64) added,
+ fedora 32 added,
+ fedora 33 added,
+ fedora 34 added,
+ opensuse 15.2 added,
+ opensuse 15.3 added,
+ ubuntu 20.04 added,
+ ubuntu 20.10 added,
+ ubuntu 21.04 added,
- ubuntu 19.10 removed.

/.gitlab-ci.yml:
+ stages 'image' and 'build' updated.
This commit is contained in:
Matous
2021-04-21 13:22:23 +02:00
parent 3d90241f62
commit b646c00981
11 changed files with 208 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
FROM amd64/debian:bullseye-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN sed -i 's/deb.debian.org/ftp.cz.debian.org/' /etc/apt/sources.list
RUN apt-get -y update && apt-get -y upgrade
RUN apt-get -y install \
autoconf \
build-essential \
flex \
bison \
ncurses-dev \
libreadline-dev

View File

@@ -1,8 +1,8 @@
FROM ubuntu:19.10
ENV DEBIAN_FRONTEND noninteractive
FROM i386/debian:bullseye-slim
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 update && apt-get -y upgrade
RUN apt-get -y install \
autoconf \
build-essential \
@@ -10,3 +10,4 @@ RUN apt-get -y install \
bison \
ncurses-dev \
libreadline-dev

View File

@@ -0,0 +1,13 @@
FROM fedora:32
RUN dnf -y update && dnf -y upgrade
RUN dnf -y install \
make \
autoconf \
flex \
bison \
pkgconfig \
"readline-devel" \
"pkgconfig(ncurses)" \
gcc

View File

@@ -0,0 +1,13 @@
FROM fedora:33
RUN dnf -y update && dnf -y upgrade
RUN dnf -y install \
make \
autoconf \
flex \
bison \
pkgconfig \
"readline-devel" \
"pkgconfig(ncurses)" \
gcc

View File

@@ -0,0 +1,13 @@
FROM fedora:34
RUN dnf -y update && dnf -y upgrade
RUN dnf -y install \
make \
autoconf \
flex \
bison \
pkgconfig \
"readline-devel" \
"pkgconfig(ncurses)" \
gcc

View File

@@ -0,0 +1,12 @@
FROM opensuse/leap:15.2
RUN zypper -n up
RUN zypper -n install \
autoconf \
flex \
bison \
pkgconfig \
readline-devel \
ncurses-devel \
gcc \
gmake

View File

@@ -0,0 +1,12 @@
FROM opensuse/leap:15.3
RUN zypper -n up
RUN zypper -n install \
autoconf \
flex \
bison \
pkgconfig \
readline-devel \
ncurses-devel \
gcc \
gmake

View File

@@ -0,0 +1,14 @@
FROM ubuntu:20.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 \

View File

@@ -0,0 +1,14 @@
FROM ubuntu:20.10
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 \

View File

@@ -0,0 +1,14 @@
FROM ubuntu:21.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