mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 02:01:55 +00:00
bird: dockerfiles were fixed (fedora)
This commit is contained in:
parent
f6824a6d56
commit
ab5a3b89b3
@ -174,15 +174,6 @@ docker_ubuntu-19_04-amd64:
|
|||||||
# Run tests if they are available
|
# Run tests if they are available
|
||||||
- $MAKE check
|
- $MAKE check
|
||||||
|
|
||||||
.build: &preprocessing-fedora
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- dnf -y install make
|
|
||||||
tags:
|
|
||||||
- docker
|
|
||||||
- linux
|
|
||||||
- amd64
|
|
||||||
|
|
||||||
.build-linux: &build-linux
|
.build-linux: &build-linux
|
||||||
<<: *build-base
|
<<: *build-base
|
||||||
tags:
|
tags:
|
||||||
@ -231,32 +222,31 @@ build-debian-testing-i386:
|
|||||||
image: registry.labs.nic.cz/labs/bird:debian-testing-i386
|
image: registry.labs.nic.cz/labs/bird:debian-testing-i386
|
||||||
|
|
||||||
build-fedora-25-amd64:
|
build-fedora-25-amd64:
|
||||||
<<: [*preprocessing-fedora, *build-linux]
|
|
||||||
<<: *build-linux
|
<<: *build-linux
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-25-amd64
|
image: registry.labs.nic.cz/labs/bird:fedora-25-amd64
|
||||||
|
|
||||||
build-fedora-26-amd64:
|
build-fedora-26-amd64:
|
||||||
<<: [*preprocessing-fedora, *build-linux]
|
<<: *build-linux
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-26-amd64
|
image: registry.labs.nic.cz/labs/bird:fedora-26-amd64
|
||||||
|
|
||||||
build-fedora-27-amd64:
|
build-fedora-27-amd64:
|
||||||
<<: [*preprocessing-fedora, *build-linux]
|
<<: *build-linux
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-27-amd64
|
image: registry.labs.nic.cz/labs/bird:fedora-27-amd64
|
||||||
|
|
||||||
build-fedora-28-amd64:
|
build-fedora-28-amd64:
|
||||||
<<: [*preprocessing-fedora, *build-linux]
|
<<: *build-linux
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-28-amd64
|
image: registry.labs.nic.cz/labs/bird:fedora-28-amd64
|
||||||
|
|
||||||
build-fedora-29-amd64:
|
build-fedora-29-amd64:
|
||||||
<<: [*preprocessing-fedora, *build-linux]
|
<<: *build-linux
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-29-amd64
|
image: registry.labs.nic.cz/labs/bird:fedora-29-amd64
|
||||||
|
|
||||||
build-fedora-30-amd64:
|
build-fedora-30-amd64:
|
||||||
<<: [*preprocessing-fedora, *build-linux]
|
<<: *build-linux
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-30-amd64
|
image: registry.labs.nic.cz/labs/bird:fedora-30-amd64
|
||||||
|
|
||||||
build-fedora-31-amd64:
|
build-fedora-31-amd64:
|
||||||
<<: [*preprocessing-fedora, *build-linux]
|
<<: *build-linux
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-31-amd64
|
image: registry.labs.nic.cz/labs/bird:fedora-31-amd64
|
||||||
|
|
||||||
build-centos-7-amd64:
|
build-centos-7-amd64:
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
FROM fedora:25
|
FROM fedora:25
|
||||||
RUN dnf -y upgrade
|
RUN dnf -y upgrade
|
||||||
RUN dnf -y install \
|
RUN dnf -y install \
|
||||||
|
make \
|
||||||
autoconf \
|
autoconf \
|
||||||
flex \
|
flex \
|
||||||
bison \
|
bison \
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
FROM fedora:26
|
FROM fedora:26
|
||||||
RUN dnf -y upgrade
|
RUN dnf -y upgrade
|
||||||
RUN dnf -y install \
|
RUN dnf -y install \
|
||||||
|
make \
|
||||||
autoconf \
|
autoconf \
|
||||||
flex \
|
flex \
|
||||||
bison \
|
bison \
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
FROM fedora:27
|
FROM fedora:27
|
||||||
RUN dnf -y upgrade
|
RUN dnf -y upgrade
|
||||||
RUN dnf -y install \
|
RUN dnf -y install \
|
||||||
|
make \
|
||||||
autoconf \
|
autoconf \
|
||||||
flex \
|
flex \
|
||||||
bison \
|
bison \
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
FROM fedora:28
|
FROM fedora:28
|
||||||
RUN dnf -y upgrade
|
RUN dnf -y upgrade
|
||||||
RUN dnf -y install \
|
RUN dnf -y install \
|
||||||
|
make \
|
||||||
autoconf \
|
autoconf \
|
||||||
flex \
|
flex \
|
||||||
bison \
|
bison \
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
FROM fedora:29
|
FROM fedora:29
|
||||||
RUN dnf -y upgrade
|
RUN dnf -y upgrade
|
||||||
RUN dnf -y install \
|
RUN dnf -y install \
|
||||||
|
make \
|
||||||
autoconf \
|
autoconf \
|
||||||
flex \
|
flex \
|
||||||
bison \
|
bison \
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
FROM fedora:30
|
FROM fedora:30
|
||||||
RUN dnf -y upgrade
|
RUN dnf -y upgrade
|
||||||
RUN dnf -y install \
|
RUN dnf -y install \
|
||||||
|
make \
|
||||||
autoconf \
|
autoconf \
|
||||||
flex \
|
flex \
|
||||||
bison \
|
bison \
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
FROM fedora:31
|
FROM fedora:31
|
||||||
RUN dnf -y upgrade
|
RUN dnf -y upgrade
|
||||||
RUN dnf -y install \
|
RUN dnf -y install \
|
||||||
|
make \
|
||||||
autoconf \
|
autoconf \
|
||||||
flex \
|
flex \
|
||||||
bison \
|
bison \
|
||||||
|
Loading…
Reference in New Issue
Block a user