2019-11-04 13:51:28 +00:00
|
|
|
|
variables:
|
2019-11-04 14:00:25 +00:00
|
|
|
|
DEBIAN_FRONTEND: noninteractive
|
|
|
|
|
LC_ALL: C
|
|
|
|
|
GIT_STRATEGY: fetch
|
|
|
|
|
DOCKER_CMD: docker --config="$HOME/.docker/$CI_JOB_ID/"
|
|
|
|
|
IMG_BASE: registry.labs.nic.cz/labs/bird
|
2019-11-12 12:17:45 +00:00
|
|
|
|
TOOLS_DIR: /var/lib/gitlab-runner/bird-tools
|
2017-08-17 13:02:35 +00:00
|
|
|
|
|
|
|
|
|
stages:
|
2019-11-12 12:17:45 +00:00
|
|
|
|
- image
|
2019-11-04 13:51:28 +00:00
|
|
|
|
- build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
#- test
|
|
|
|
|
|
|
|
|
|
.docker: &docker_build
|
|
|
|
|
stage: image
|
|
|
|
|
allow_failure: true
|
|
|
|
|
script:
|
|
|
|
|
- $DOCKER_CMD login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.labs.nic.cz
|
|
|
|
|
# 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
|
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-7-amd64:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-7-amd64"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-8-amd64:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-8-amd64"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-9-amd64:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-9-amd64"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-10-amd64:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-10-amd64"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-testing-amd64:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-testing-amd64"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-7-i386:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-7-i386"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-8-i386:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-8-i386"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-9-i386:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-9-i386"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-10-i386:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-10-i386"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
docker_debian-testing-i386:
|
|
|
|
|
variables:
|
|
|
|
|
IMG_NAME: "debian-testing-i386"
|
|
|
|
|
<<: *docker_build
|
2019-11-12 13:05:57 +00:00
|
|
|
|
#
|
|
|
|
|
# docker_fedora-25-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "fedora-25-amd64"
|
|
|
|
|
# <<: *docker_build
|
|
|
|
|
#
|
|
|
|
|
# docker_fedora-26-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "fedora-26-amd64"
|
|
|
|
|
# <<: *docker_build
|
|
|
|
|
#
|
|
|
|
|
# docker_fedora-27-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "fedora-27-amd64"
|
|
|
|
|
# <<: *docker_build
|
|
|
|
|
#
|
2019-11-13 13:22:18 +00:00
|
|
|
|
# docker_fedora-28-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "fedora-28-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-13 13:15:40 +00:00
|
|
|
|
|
2019-11-13 13:22:18 +00:00
|
|
|
|
# docker_fedora-29-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "fedora-29-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-13 09:42:10 +00:00
|
|
|
|
# docker_fedora-30-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "fedora-30-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-12 14:03:09 +00:00
|
|
|
|
# docker_fedora-31-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "fedora-31-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
# docker_centos-7-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "centos-7-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
# docker_centos-8-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "centos-8-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-12 14:03:09 +00:00
|
|
|
|
# docker_opensuse-42_3-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "opensuse-42.3-amd64"
|
|
|
|
|
# <<: *docker_build
|
|
|
|
|
|
2019-11-12 13:05:57 +00:00
|
|
|
|
# docker_ubuntu-14_04-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "ubuntu-14.04-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-12 13:05:57 +00:00
|
|
|
|
# docker_ubuntu-16_04-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "ubuntu-16.04-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-13 13:15:40 +00:00
|
|
|
|
# docker_ubuntu-18_04-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "ubuntu-18.04-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-12 12:39:44 +00:00
|
|
|
|
|
2019-11-13 13:15:40 +00:00
|
|
|
|
# docker_ubuntu-19_04-amd64:
|
|
|
|
|
# variables:
|
|
|
|
|
# IMG_NAME: "ubuntu-19.04-amd64"
|
|
|
|
|
# <<: *docker_build
|
2019-11-13 10:58:07 +00:00
|
|
|
|
|
2019-11-12 12:17:45 +00:00
|
|
|
|
.build: &build-base
|
2019-11-04 13:51:28 +00:00
|
|
|
|
stage: build
|
|
|
|
|
script:
|
2019-11-12 12:17:45 +00:00
|
|
|
|
- autoreconf
|
|
|
|
|
- ./configure CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS"
|
|
|
|
|
# Detect which make is available
|
2019-11-13 09:42:10 +00:00
|
|
|
|
- MAKE=make
|
|
|
|
|
- which gmake 2>/dev/null >/dev/null && MAKE=gmake
|
2019-11-12 12:17:45 +00:00
|
|
|
|
- $MAKE
|
|
|
|
|
# Run tests if they are available
|
|
|
|
|
- $MAKE check
|
|
|
|
|
|
|
|
|
|
.build-linux: &build-linux
|
|
|
|
|
<<: *build-base
|
|
|
|
|
tags:
|
|
|
|
|
- docker
|
|
|
|
|
- linux
|
|
|
|
|
- amd64
|
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-7-amd64:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-7-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-7-i386:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-7-i386
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-8-amd64:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-8-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-8-i386:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-8-i386
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-9-amd64:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-9-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-9-i386:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-9-i386
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-10-amd64:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-10-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-10-i386:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-10-i386
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-testing-amd64:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-testing-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
build-debian-testing-i386:
|
|
|
|
|
<<: *build-linux
|
|
|
|
|
image: registry.labs.nic.cz/labs/bird:debian-testing-i386
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-12 13:05:57 +00:00
|
|
|
|
# build-fedora-25-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:fedora-25-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-12 13:05:57 +00:00
|
|
|
|
# build-fedora-26-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:fedora-26-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-12 13:05:57 +00:00
|
|
|
|
# build-fedora-27-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:fedora-27-amd64
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-13 13:22:18 +00:00
|
|
|
|
# build-fedora-28-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:fedora-28-amd64
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-13 13:22:18 +00:00
|
|
|
|
# build-fedora-29-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:fedora-29-amd64
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-13 09:42:10 +00:00
|
|
|
|
# build-fedora-30-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:fedora-30-amd64
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-12 14:03:09 +00:00
|
|
|
|
# build-fedora-31-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:fedora-31-amd64
|
2019-11-12 12:33:48 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
# build-centos-7-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:centos-7-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-15 08:10:07 +00:00
|
|
|
|
# build-centos-8-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:centos-8-amd64
|
2019-11-12 14:03:09 +00:00
|
|
|
|
|
|
|
|
|
# build-opensuse-42_3-amd64:
|
2019-11-12 13:05:57 +00:00
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:opensuse-42.3-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-12 13:05:57 +00:00
|
|
|
|
# build-ubuntu-14_04-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:ubuntu-14.04-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-12 13:05:57 +00:00
|
|
|
|
# build-ubuntu-16_04-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:ubuntu-16.04-amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-13 13:15:40 +00:00
|
|
|
|
# build-ubuntu-18_04-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:ubuntu-18.04-amd64
|
2019-11-13 10:58:07 +00:00
|
|
|
|
|
2019-11-13 13:15:40 +00:00
|
|
|
|
# build-ubuntu-19_04-amd64:
|
|
|
|
|
# <<: *build-linux
|
|
|
|
|
# image: registry.labs.nic.cz/labs/bird:ubuntu-19.04-amd64
|
2019-11-12 12:39:44 +00:00
|
|
|
|
|
2019-11-12 14:03:09 +00:00
|
|
|
|
# build-freebsd-11-amd64:
|
|
|
|
|
# <<: *build-base
|
|
|
|
|
# tags:
|
|
|
|
|
# - freebsd
|
|
|
|
|
# - amd64
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-12 14:03:09 +00:00
|
|
|
|
# build-freebsd-11-i386:
|
|
|
|
|
# <<: *build-base
|
|
|
|
|
# tags:
|
|
|
|
|
# - freebsd
|
|
|
|
|
# - i386
|
2019-11-04 13:51:28 +00:00
|
|
|
|
|
2019-11-13 09:14:26 +00:00
|
|
|
|
# build-birdlab:
|
|
|
|
|
# stage: build
|
|
|
|
|
# tags:
|
|
|
|
|
# - birdlab
|
|
|
|
|
# - amd64
|
|
|
|
|
# script:
|
|
|
|
|
# - DIR=$(pwd)
|
|
|
|
|
# - autoreconf
|
|
|
|
|
# - ./configure
|
|
|
|
|
# - make
|
|
|
|
|
# - cd $TOOLS_DIR
|
|
|
|
|
# - sudo git clean -fx
|
|
|
|
|
# - git pull --ff-only
|
|
|
|
|
# - mv $DIR/bird $DIR/birdc netlab/common
|
2019-11-12 12:17:45 +00:00
|
|
|
|
|
2019-11-01 01:39:36 +00:00
|
|
|
|
|
2019-11-12 12:20:35 +00:00
|
|
|
|
# .test: &test-base
|
|
|
|
|
# stage: test
|
|
|
|
|
# needs: [build-birdlab]
|
|
|
|
|
# tags:
|
|
|
|
|
# - birdlab
|
|
|
|
|
# - amd64
|
|
|
|
|
# script:
|
|
|
|
|
# - cd $TOOLS_DIR/netlab
|
|
|
|
|
# - sudo ./runtest -m check $TEST_NAME
|
|
|
|
|
|
|
|
|
|
# test-ospf:
|
|
|
|
|
# <<: *test-base
|
|
|
|
|
# variables:
|
|
|
|
|
# TEST_NAME: cf-ospf
|