2017-08-17 13:02:35 +00:00
|
|
|
|
variables:
|
|
|
|
|
DEBIAN_FRONTEND: noninteractive
|
2021-04-25 17:52:19 +00:00
|
|
|
|
LC_ALL: C.UTF-8
|
2017-08-17 13:02:35 +00:00
|
|
|
|
GIT_STRATEGY: fetch
|
|
|
|
|
DOCKER_CMD: docker --config="$HOME/.docker/$CI_JOB_ID/"
|
2021-10-14 10:16:46 +00:00
|
|
|
|
IMG_BASE: registry.nic.cz/labs/bird
|
2019-11-10 02:02:58 +00:00
|
|
|
|
TOOLS_DIR: /var/lib/gitlab-runner/bird-tools
|
2022-11-08 09:20:55 +00:00
|
|
|
|
STAYRTR_BINARY: /var/lib/gitlab-runner/stayrtr-0.1-108-g8d18a41-linux-x86_64
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
|
|
|
|
stages:
|
2022-11-30 01:45:07 +00:00
|
|
|
|
# - image
|
2017-08-17 13:02:35 +00:00
|
|
|
|
- build
|
2021-04-22 22:20:36 +00:00
|
|
|
|
- pkg
|
2019-11-10 02:02:58 +00:00
|
|
|
|
- test
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
|
|
|
|
.docker: &docker_build
|
|
|
|
|
stage: image
|
|
|
|
|
allow_failure: true
|
|
|
|
|
script:
|
2021-10-14 10:16:46 +00:00
|
|
|
|
- $DOCKER_CMD login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.nic.cz
|
2017-08-17 13:02:35 +00:00
|
|
|
|
# Make sure we refresh the base image if it updates (eg. security updates, etc)
|
|
|
|
|
# If we do just the build, cache is always reused and the freshness of the
|
|
|
|
|
# base image is never checked. However, pull always asks and updates the
|
|
|
|
|
# image only if it changed ‒ therefore, the cache is used unless there's a
|
|
|
|
|
# change.
|
|
|
|
|
- $DOCKER_CMD pull `sed -ne 's/^FROM //p' "misc/docker/$IMG_NAME/Dockerfile"`
|
|
|
|
|
- $DOCKER_CMD build -t "bird:$IMG_NAME" "misc/docker/$IMG_NAME"
|
|
|
|
|
- $DOCKER_CMD tag "bird:$IMG_NAME" "$IMG_BASE:$IMG_NAME"
|
|
|
|
|
- $DOCKER_CMD push "$IMG_BASE:$IMG_NAME"
|
|
|
|
|
after_script:
|
|
|
|
|
- rm -f "$HOME/.docker/$CI_JOB_ID/" # cleanup the credentials
|
|
|
|
|
tags:
|
|
|
|
|
# That's Docker in Docker
|
|
|
|
|
- dind
|
|
|
|
|
|
2022-11-30 01:45:07 +00:00
|
|
|
|
# Docker build example
|
|
|
|
|
#docker_debian-11-amd64:
|
2021-05-19 17:10:09 +00:00
|
|
|
|
# variables:
|
2022-11-30 01:45:07 +00:00
|
|
|
|
# IMG_NAME: "debian-11-amd64"
|
2021-05-19 17:10:09 +00:00
|
|
|
|
# <<: *docker_build
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
2021-04-22 22:20:36 +00:00
|
|
|
|
|
2019-11-10 23:24:07 +00:00
|
|
|
|
.build: &build-base
|
2017-08-17 13:02:35 +00:00
|
|
|
|
stage: build
|
|
|
|
|
script:
|
|
|
|
|
- autoreconf
|
2017-12-07 16:41:09 +00:00
|
|
|
|
- ./configure CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS"
|
2017-08-17 13:02:35 +00:00
|
|
|
|
# Detect which make is available
|
|
|
|
|
- MAKE=make
|
|
|
|
|
- which gmake 2>/dev/null >/dev/null && MAKE=gmake
|
|
|
|
|
- $MAKE
|
2017-12-12 14:22:01 +00:00
|
|
|
|
- $MAKE check
|
2021-04-25 09:24:46 +00:00
|
|
|
|
# Build docs when tools are available
|
|
|
|
|
- if which linuxdoc pdflatex >/dev/null ; then $MAKE docs ; fi
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
2019-11-10 23:24:07 +00:00
|
|
|
|
.build-linux: &build-linux
|
|
|
|
|
<<: *build-base
|
|
|
|
|
tags:
|
|
|
|
|
- docker
|
|
|
|
|
- linux
|
|
|
|
|
- amd64
|
|
|
|
|
|
2017-08-17 13:02:35 +00:00
|
|
|
|
build-debian-9-amd64:
|
2019-11-10 23:24:07 +00:00
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-9-amd64
|
2019-11-10 23:24:07 +00:00
|
|
|
|
|
|
|
|
|
build-debian-9-i386:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-9-i386
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
2019-11-26 18:33:01 +00:00
|
|
|
|
build-debian-10-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-10-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
|
|
|
|
build-debian-10-i386:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-10-i386
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
2021-04-21 11:22:23 +00:00
|
|
|
|
build-debian-11-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-11-amd64
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
2021-05-19 17:10:09 +00:00
|
|
|
|
#build-debian-11-i386:
|
|
|
|
|
# <<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
# image: registry.nic.cz/labs/bird:debian-11-i386
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
2017-08-17 13:02:35 +00:00
|
|
|
|
build-debian-testing-amd64:
|
2019-11-10 23:24:07 +00:00
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-testing-amd64
|
2019-11-10 23:24:07 +00:00
|
|
|
|
|
2021-05-19 17:10:09 +00:00
|
|
|
|
#build-debian-testing-i386:
|
|
|
|
|
# <<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
# image: registry.nic.cz/labs/bird:debian-testing-i386
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
|
|
|
|
build-fedora-25-amd64:
|
2019-11-10 23:24:07 +00:00
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-25-amd64
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
|
|
|
|
build-fedora-26-amd64:
|
2019-11-10 23:24:07 +00:00
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-26-amd64
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
2019-11-26 18:33:01 +00:00
|
|
|
|
build-fedora-27-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-27-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
|
|
|
|
build-fedora-28-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-28-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
|
|
|
|
build-fedora-29-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-29-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
|
|
|
|
build-fedora-30-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-30-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
|
|
|
|
build-fedora-31-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-31-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
2021-04-21 11:22:23 +00:00
|
|
|
|
build-fedora-32-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-32-amd64
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
|
|
|
|
build-fedora-33-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-33-amd64
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
|
|
|
|
build-fedora-34-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-33-amd64
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
2023-06-15 13:50:18 +00:00
|
|
|
|
#build-centos-7-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.nic.cz/labs/bird:centos-7-amd64
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
2019-11-26 18:33:01 +00:00
|
|
|
|
build-centos-8-amd64:
|
2019-11-10 23:24:07 +00:00
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:centos-8-amd64
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
|
|
|
|
build-ubuntu-16_04-amd64:
|
2019-11-10 23:24:07 +00:00
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:ubuntu-16.04-amd64
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
2019-11-26 18:33:01 +00:00
|
|
|
|
build-ubuntu-18_04-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:ubuntu-18.04-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
2021-04-21 11:22:23 +00:00
|
|
|
|
build-ubuntu-20_04-amd64:
|
2019-11-26 18:33:01 +00:00
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:ubuntu-20.04-amd64
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
2022-01-06 08:53:23 +00:00
|
|
|
|
build-ubuntu-21_10-amd64:
|
2021-04-21 11:22:23 +00:00
|
|
|
|
<<: *build-linux
|
2022-01-06 08:53:23 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:ubuntu-21.10-amd64
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
2021-05-19 17:10:09 +00:00
|
|
|
|
#build-ubuntu-21_04-amd64:
|
|
|
|
|
# <<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
# image: registry.nic.cz/labs/bird:ubuntu-21.04-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
|
|
|
|
build-opensuse-15.0-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:opensuse-15.0-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
|
|
|
|
build-opensuse-15.1-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:opensuse-15.1-amd64
|
2019-11-26 18:33:01 +00:00
|
|
|
|
|
2021-04-21 11:22:23 +00:00
|
|
|
|
build-opensuse-15.2-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:opensuse-15.2-amd64
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
|
|
|
|
build-opensuse-15.3-amd64:
|
|
|
|
|
<<: *build-linux
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:opensuse-15.3-amd64
|
2021-04-21 11:22:23 +00:00
|
|
|
|
|
2022-05-27 14:07:24 +00:00
|
|
|
|
#build-freebsd-11-amd64:
|
|
|
|
|
# <<: *build-base
|
|
|
|
|
# tags:
|
|
|
|
|
# - freebsd
|
|
|
|
|
# - amd64
|
|
|
|
|
|
|
|
|
|
#build-freebsd-11-i386:
|
|
|
|
|
# <<: *build-base
|
|
|
|
|
# tags:
|
|
|
|
|
# - freebsd
|
|
|
|
|
# - i386
|
2019-10-31 23:13:59 +00:00
|
|
|
|
|
2021-04-22 22:20:36 +00:00
|
|
|
|
|
2021-05-19 17:10:09 +00:00
|
|
|
|
.pkg-deb: &pkg-deb
|
2021-04-22 22:20:36 +00:00
|
|
|
|
stage: pkg
|
|
|
|
|
script:
|
2021-05-19 17:10:09 +00:00
|
|
|
|
- pip3 install apkg
|
|
|
|
|
- apkg build
|
|
|
|
|
#- apkg install -y pkg/pkgs/*/*/*.deb
|
|
|
|
|
artifacts:
|
|
|
|
|
paths:
|
|
|
|
|
- pkg/pkgs/*
|
|
|
|
|
|
|
|
|
|
.pkg-rpm: &pkg-rpm
|
|
|
|
|
stage: pkg
|
|
|
|
|
script:
|
|
|
|
|
- pip3 install apkg
|
|
|
|
|
- apkg build
|
|
|
|
|
#- apkg install -y pkg/pkgs/*/*/*.rpm
|
|
|
|
|
artifacts:
|
|
|
|
|
paths:
|
|
|
|
|
- pkg/pkgs/*
|
|
|
|
|
|
|
|
|
|
.pkg-rpm-wa: &pkg-rpm-wa
|
|
|
|
|
stage: pkg
|
|
|
|
|
script:
|
|
|
|
|
- sed -i "s/runstatedir/with-runtimedir/" distro/pkg/rpm/bird.spec
|
|
|
|
|
- pip3 install apkg
|
|
|
|
|
- apkg build
|
|
|
|
|
#- apkg install -y pkg/pkgs/*/*/*.rpm
|
|
|
|
|
artifacts:
|
|
|
|
|
paths:
|
|
|
|
|
- pkg/pkgs/*
|
|
|
|
|
|
2021-04-22 22:20:36 +00:00
|
|
|
|
pkg-debian-10-amd64:
|
2021-05-19 17:10:09 +00:00
|
|
|
|
<<: *pkg-deb
|
2021-04-22 22:20:36 +00:00
|
|
|
|
needs: [build-debian-10-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-10-amd64
|
2021-04-22 22:20:36 +00:00
|
|
|
|
|
|
|
|
|
pkg-debian-10-i386:
|
2021-05-19 17:10:09 +00:00
|
|
|
|
<<: *pkg-deb
|
2021-04-22 22:20:36 +00:00
|
|
|
|
needs: [build-debian-10-i386]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-10-i386
|
2021-04-22 22:20:36 +00:00
|
|
|
|
|
|
|
|
|
pkg-debian-11-amd64:
|
2021-05-19 17:10:09 +00:00
|
|
|
|
<<: *pkg-deb
|
2021-04-22 22:20:36 +00:00
|
|
|
|
needs: [build-debian-11-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:debian-11-amd64
|
2021-04-22 22:20:36 +00:00
|
|
|
|
|
2021-05-19 17:10:09 +00:00
|
|
|
|
pkg-fedora-30-amd64:
|
|
|
|
|
<<: *pkg-rpm-wa
|
|
|
|
|
needs: [build-fedora-30-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-30-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-fedora-31-amd64:
|
|
|
|
|
<<: *pkg-rpm-wa
|
|
|
|
|
needs: [build-fedora-31-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-31-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-fedora-32-amd64:
|
|
|
|
|
<<: *pkg-rpm-wa
|
|
|
|
|
needs: [build-fedora-32-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-32-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-fedora-33-amd64:
|
|
|
|
|
<<: *pkg-rpm-wa
|
|
|
|
|
needs: [build-fedora-33-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-33-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-fedora-34-amd64:
|
|
|
|
|
<<: *pkg-rpm
|
|
|
|
|
needs: [build-fedora-34-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:fedora-34-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
2023-06-15 13:50:18 +00:00
|
|
|
|
#pkg-centos-7-amd64:
|
|
|
|
|
# <<: *pkg-rpm-wa
|
|
|
|
|
# variables:
|
|
|
|
|
# LC_ALL: en_US.UTF-8
|
|
|
|
|
# needs: [build-centos-7-amd64]
|
|
|
|
|
# image: registry.nic.cz/labs/bird:centos-7-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-centos-8-amd64:
|
|
|
|
|
<<: *pkg-rpm-wa
|
|
|
|
|
needs: [build-centos-8-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:centos-8-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-ubuntu-18.04-amd64:
|
|
|
|
|
<<: *pkg-deb
|
|
|
|
|
needs: [build-ubuntu-18_04-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:ubuntu-18.04-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-ubuntu-20.04-amd64:
|
|
|
|
|
<<: *pkg-deb
|
|
|
|
|
needs: [build-ubuntu-20_04-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:ubuntu-20.04-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
2022-01-06 08:53:23 +00:00
|
|
|
|
|
|
|
|
|
pkg-ubuntu-21.10-amd64:
|
2021-05-19 17:10:09 +00:00
|
|
|
|
<<: *pkg-deb
|
2022-01-06 08:53:23 +00:00
|
|
|
|
needs: [build-ubuntu-21_10-amd64]
|
|
|
|
|
image: registry.nic.cz/labs/bird:ubuntu-21.10-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
#pkg-ubuntu-21.04-amd64:
|
|
|
|
|
# <<: *pkg-deb
|
|
|
|
|
# needs: [build-ubuntu-21_04-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
# image: registry.nic.cz/labs/bird:ubuntu-21.04-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-opensuse-15.1-amd64:
|
|
|
|
|
<<: *pkg-rpm-wa
|
|
|
|
|
needs: [build-opensuse-15.1-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:opensuse-15.1-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-opensuse-15.2-amd64:
|
|
|
|
|
<<: *pkg-rpm-wa
|
|
|
|
|
needs: [build-opensuse-15.2-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:opensuse-15.2-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
|
|
|
|
pkg-opensuse-15.3-amd64:
|
|
|
|
|
<<: *pkg-rpm-wa
|
|
|
|
|
needs: [build-opensuse-15.3-amd64]
|
2021-10-14 10:16:46 +00:00
|
|
|
|
image: registry.nic.cz/labs/bird:opensuse-15.3-amd64
|
2021-05-19 17:10:09 +00:00
|
|
|
|
|
2021-04-22 22:20:36 +00:00
|
|
|
|
|
2019-10-31 23:13:59 +00:00
|
|
|
|
build-birdlab:
|
2019-11-10 02:02:58 +00:00
|
|
|
|
stage: build
|
2019-10-31 23:13:59 +00:00
|
|
|
|
tags:
|
2019-11-10 02:02:58 +00:00
|
|
|
|
- birdlab
|
|
|
|
|
- amd64
|
|
|
|
|
script:
|
|
|
|
|
- DIR=$(pwd)
|
|
|
|
|
- autoreconf
|
|
|
|
|
- ./configure
|
|
|
|
|
- make
|
|
|
|
|
- cd $TOOLS_DIR
|
|
|
|
|
- sudo git clean -fx
|
|
|
|
|
- git pull --ff-only
|
2019-11-10 21:58:23 +00:00
|
|
|
|
- mv $DIR/bird $DIR/birdc netlab/common
|
2022-11-08 09:20:55 +00:00
|
|
|
|
- ln -s $STAYRTR_BINARY netlab/common/stayrtr
|
2019-11-10 02:02:58 +00:00
|
|
|
|
|
2019-11-10 23:24:07 +00:00
|
|
|
|
.test: &test-base
|
2019-11-10 02:02:58 +00:00
|
|
|
|
stage: test
|
2019-11-10 02:43:30 +00:00
|
|
|
|
needs: [build-birdlab]
|
2019-11-10 02:02:58 +00:00
|
|
|
|
tags:
|
|
|
|
|
- birdlab
|
|
|
|
|
- amd64
|
|
|
|
|
script:
|
2019-11-10 21:58:23 +00:00
|
|
|
|
- cd $TOOLS_DIR/netlab
|
2020-03-05 21:01:30 +00:00
|
|
|
|
- sudo ./stop
|
2022-11-08 09:20:55 +00:00
|
|
|
|
- sudo ./runtest -s v2 -m check $TEST_NAME
|
2019-11-10 02:43:30 +00:00
|
|
|
|
|
2020-03-05 16:39:52 +00:00
|
|
|
|
test-ospf-base:
|
2019-11-10 23:24:07 +00:00
|
|
|
|
<<: *test-base
|
2019-11-10 02:43:30 +00:00
|
|
|
|
variables:
|
2020-03-05 16:39:52 +00:00
|
|
|
|
TEST_NAME: cf-ospf-base
|
|
|
|
|
|
|
|
|
|
test-ospf-default:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-default
|
|
|
|
|
|
|
|
|
|
test-ospf-priority:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-priority
|
|
|
|
|
|
|
|
|
|
test-ospf-nbma:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-nbma
|
|
|
|
|
|
|
|
|
|
test-ospf-ptmp:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-ptmp
|
|
|
|
|
|
2021-05-19 17:10:09 +00:00
|
|
|
|
test-ospf-authentication:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-authentication
|
2020-03-05 16:39:52 +00:00
|
|
|
|
|
|
|
|
|
test-ospf-bfd:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-bfd
|
|
|
|
|
|
|
|
|
|
test-ospf-custom:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-custom
|
2020-04-22 14:03:37 +00:00
|
|
|
|
|
2022-01-05 19:07:27 +00:00
|
|
|
|
test-ospf-area:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-area
|
|
|
|
|
|
2020-04-28 01:52:47 +00:00
|
|
|
|
test-ospf-vrf:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ospf-vrf
|
|
|
|
|
|
2020-04-22 14:03:37 +00:00
|
|
|
|
test-bgp-base:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-bgp-base
|
2020-04-28 12:58:43 +00:00
|
|
|
|
|
|
|
|
|
test-bgp-auth:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-bgp-auth
|
2020-05-05 00:20:30 +00:00
|
|
|
|
|
|
|
|
|
test-bgp-int:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-bgp-int
|
2021-03-18 14:54:44 +00:00
|
|
|
|
|
|
|
|
|
test-bgp-merged:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-bgp-merged
|
|
|
|
|
|
2022-11-08 09:20:55 +00:00
|
|
|
|
test-bgp-flowspec:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-bgp-flowspec
|
|
|
|
|
|
|
|
|
|
test-bgp-rs-multitab:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-bgp-rs-multitab
|
|
|
|
|
|
2021-03-18 14:54:44 +00:00
|
|
|
|
test-ebgp-loop:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ebgp-loop
|
|
|
|
|
|
|
|
|
|
test-ebgp-star:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ebgp-star
|
|
|
|
|
|
2022-11-08 09:20:55 +00:00
|
|
|
|
test-ebgp-role:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ebgp-role
|
|
|
|
|
|
|
|
|
|
test-ebgp-graceful:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ebgp-graceful
|
|
|
|
|
|
|
|
|
|
test-ebgp-import-limit:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ebgp-import-limit
|
|
|
|
|
|
2021-03-18 14:54:44 +00:00
|
|
|
|
test-ibgp-loop:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ibgp-loop
|
|
|
|
|
|
2022-11-08 09:20:55 +00:00
|
|
|
|
test-ibgp-loop-big:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ibgp-loop-big
|
|
|
|
|
|
|
|
|
|
test-ibgp-flat:
|
2021-03-18 14:54:44 +00:00
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-ibgp-flat
|
2021-06-10 23:31:10 +00:00
|
|
|
|
|
|
|
|
|
test-babel-base:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-babel-base
|
|
|
|
|
|
|
|
|
|
test-babel-auth:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-babel-auth
|
2022-01-05 19:07:27 +00:00
|
|
|
|
|
|
|
|
|
test-rip-base:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-rip-base
|
2022-11-08 09:20:55 +00:00
|
|
|
|
|
|
|
|
|
test-kernel-learn:
|
|
|
|
|
<<: *test-base
|
|
|
|
|
variables:
|
|
|
|
|
TEST_NAME: cf-kernel-learn
|
2022-11-29 17:30:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.build-birdlab-base: &build-birdlab-base
|
|
|
|
|
stage: build
|
|
|
|
|
script:
|
|
|
|
|
- autoreconf
|
|
|
|
|
- ./configure
|
|
|
|
|
- gmake
|
|
|
|
|
- gmake check
|
|
|
|
|
|
|
|
|
|
build-birdlab-debian-11:
|
|
|
|
|
<<: *build-birdlab-base
|
|
|
|
|
tags:
|
|
|
|
|
- birdlab-debian-11
|
|
|
|
|
- amd64
|
|
|
|
|
|
|
|
|
|
build-birdlab-centos-08:
|
|
|
|
|
<<: *build-birdlab-base
|
|
|
|
|
tags:
|
|
|
|
|
- birdlab-centos-08
|
|
|
|
|
- amd64
|
|
|
|
|
|
|
|
|
|
build-birdlab-fedora-37:
|
|
|
|
|
<<: *build-birdlab-base
|
|
|
|
|
tags:
|
|
|
|
|
- birdlab-fedora-37
|
|
|
|
|
- amd64
|
|
|
|
|
|
|
|
|
|
build-birdlab-freebsd-13:
|
|
|
|
|
<<: *build-birdlab-base
|
|
|
|
|
tags:
|
|
|
|
|
- birdlab-freebsd-13
|
|
|
|
|
- amd64
|
|
|
|
|
|
|
|
|
|
build-birdlab-openbsd-71:
|
|
|
|
|
<<: *build-birdlab-base
|
|
|
|
|
variables:
|
|
|
|
|
AUTOCONF_VERSION: "2.71"
|
|
|
|
|
tags:
|
|
|
|
|
- birdlab-openbsd-71
|
|
|
|
|
- amd64
|