aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorMatous <bralor92@email.cz>2021-04-21 13:22:23 +0200
committerMatous <bralor92@email.cz>2021-04-21 13:22:23 +0200
commitb646c0098120bbb10ec91fa2fbf1df416c5849bd (patch)
treec40a8da8d1b8bdad560ec7b2dba33bc3a561ac29 /misc
parent3d90241f62393e6d614c1d20fde4013c9ff24685 (diff)
downloadbird-b646c0098120bbb10ec91fa2fbf1df416c5849bd.tar.gz
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.
Diffstat (limited to 'misc')
-rw-r--r--misc/docker/debian-11-amd64/Dockerfile13
-rw-r--r--misc/docker/debian-11-i386/Dockerfile (renamed from misc/docker/ubuntu-19.10-amd64/Dockerfile)9
-rw-r--r--misc/docker/fedora-32-amd64/Dockerfile13
-rw-r--r--misc/docker/fedora-33-amd64/Dockerfile13
-rw-r--r--misc/docker/fedora-34-amd64/Dockerfile13
-rw-r--r--misc/docker/opensuse-15.2-amd64/Dockerfile12
-rw-r--r--misc/docker/opensuse-15.3-amd64/Dockerfile12
-rw-r--r--misc/docker/ubuntu-20.04-amd64/Dockerfile14
-rw-r--r--misc/docker/ubuntu-20.10-amd64/Dockerfile14
-rw-r--r--misc/docker/ubuntu-21.04-amd64/Dockerfile14
10 files changed, 123 insertions, 4 deletions
diff --git a/misc/docker/debian-11-amd64/Dockerfile b/misc/docker/debian-11-amd64/Dockerfile
new file mode 100644
index 00000000..803f3243
--- /dev/null
+++ b/misc/docker/debian-11-amd64/Dockerfile
@@ -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
+
diff --git a/misc/docker/ubuntu-19.10-amd64/Dockerfile b/misc/docker/debian-11-i386/Dockerfile
index 8119e439..d599dbfc 100644
--- a/misc/docker/ubuntu-19.10-amd64/Dockerfile
+++ b/misc/docker/debian-11-i386/Dockerfile
@@ -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
+
diff --git a/misc/docker/fedora-32-amd64/Dockerfile b/misc/docker/fedora-32-amd64/Dockerfile
new file mode 100644
index 00000000..6c8d6dac
--- /dev/null
+++ b/misc/docker/fedora-32-amd64/Dockerfile
@@ -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
+
diff --git a/misc/docker/fedora-33-amd64/Dockerfile b/misc/docker/fedora-33-amd64/Dockerfile
new file mode 100644
index 00000000..5551fe53
--- /dev/null
+++ b/misc/docker/fedora-33-amd64/Dockerfile
@@ -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
+
diff --git a/misc/docker/fedora-34-amd64/Dockerfile b/misc/docker/fedora-34-amd64/Dockerfile
new file mode 100644
index 00000000..ef78db2d
--- /dev/null
+++ b/misc/docker/fedora-34-amd64/Dockerfile
@@ -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
+
diff --git a/misc/docker/opensuse-15.2-amd64/Dockerfile b/misc/docker/opensuse-15.2-amd64/Dockerfile
new file mode 100644
index 00000000..d1acd5c4
--- /dev/null
+++ b/misc/docker/opensuse-15.2-amd64/Dockerfile
@@ -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
diff --git a/misc/docker/opensuse-15.3-amd64/Dockerfile b/misc/docker/opensuse-15.3-amd64/Dockerfile
new file mode 100644
index 00000000..4515e3be
--- /dev/null
+++ b/misc/docker/opensuse-15.3-amd64/Dockerfile
@@ -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
diff --git a/misc/docker/ubuntu-20.04-amd64/Dockerfile b/misc/docker/ubuntu-20.04-amd64/Dockerfile
new file mode 100644
index 00000000..4b773697
--- /dev/null
+++ b/misc/docker/ubuntu-20.04-amd64/Dockerfile
@@ -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 \
+
diff --git a/misc/docker/ubuntu-20.10-amd64/Dockerfile b/misc/docker/ubuntu-20.10-amd64/Dockerfile
new file mode 100644
index 00000000..0c135280
--- /dev/null
+++ b/misc/docker/ubuntu-20.10-amd64/Dockerfile
@@ -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 \
+
diff --git a/misc/docker/ubuntu-21.04-amd64/Dockerfile b/misc/docker/ubuntu-21.04-amd64/Dockerfile
new file mode 100644
index 00000000..64dc2f33
--- /dev/null
+++ b/misc/docker/ubuntu-21.04-amd64/Dockerfile
@@ -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
+