mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-23 10:11:53 +00:00
bird: .gitlab-ci.yml was modified. Third stage was added
This commit is contained in:
parent
8160a1a249
commit
bca12fb81b
470
.gitlab-ci.yml
470
.gitlab-ci.yml
@ -6,218 +6,216 @@ variables:
|
|||||||
IMG_BASE: registry.labs.nic.cz/labs/bird
|
IMG_BASE: registry.labs.nic.cz/labs/bird
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- image
|
# - image
|
||||||
- build
|
- build
|
||||||
- netlab_prep
|
- netlab_prep
|
||||||
- runtest
|
|
||||||
- cleanup
|
|
||||||
|
|
||||||
.docker: &docker_build
|
# .docker: &docker_build
|
||||||
stage: image
|
# stage: image
|
||||||
allow_failure: true
|
# allow_failure: true
|
||||||
script:
|
# script:
|
||||||
- $DOCKER_CMD login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.labs.nic.cz
|
# - $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)
|
# # 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
|
# # 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
|
# # 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
|
# # image only if it changed ‒ therefore, the cache is used unless there's a
|
||||||
# change.
|
# # change.
|
||||||
- $DOCKER_CMD pull `sed -ne 's/^FROM //p' "misc/docker/$IMG_NAME/Dockerfile"`
|
# - $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 build -t "bird:$IMG_NAME" "misc/docker/$IMG_NAME"
|
||||||
- $DOCKER_CMD tag "bird:$IMG_NAME" "$IMG_BASE:$IMG_NAME"
|
# - $DOCKER_CMD tag "bird:$IMG_NAME" "$IMG_BASE:$IMG_NAME"
|
||||||
- $DOCKER_CMD push "$IMG_BASE:$IMG_NAME"
|
# - $DOCKER_CMD push "$IMG_BASE:$IMG_NAME"
|
||||||
after_script:
|
# after_script:
|
||||||
- rm -f "$HOME/.docker/$CI_JOB_ID/" # cleanup the credentials
|
# - rm -f "$HOME/.docker/$CI_JOB_ID/" # cleanup the credentials
|
||||||
tags:
|
# tags:
|
||||||
# That's Docker in Docker
|
# # That's Docker in Docker
|
||||||
- dind
|
# - dind
|
||||||
|
|
||||||
docker_debian-7-amd64:
|
# docker_debian-7-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "debian-7-amd64"
|
# IMG_NAME: "debian-7-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_debian-8-amd64:
|
# docker_debian-8-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "debian-8-amd64"
|
# IMG_NAME: "debian-8-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_debian-9-amd64:
|
# docker_debian-9-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "debian-9-amd64"
|
# IMG_NAME: "debian-9-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_debian-testing-amd64:
|
# docker_debian-testing-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "debian-testing-amd64"
|
# IMG_NAME: "debian-testing-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_debian-7-i386:
|
# docker_debian-7-i386:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "debian-7-i386"
|
# IMG_NAME: "debian-7-i386"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_debian-8-i386:
|
# docker_debian-8-i386:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "debian-8-i386"
|
# IMG_NAME: "debian-8-i386"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_debian-9-i386:
|
# docker_debian-9-i386:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "debian-9-i386"
|
# IMG_NAME: "debian-9-i386"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_debian-testing-i386:
|
# docker_debian-testing-i386:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "debian-testing-i386"
|
# IMG_NAME: "debian-testing-i386"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_fedora-25-amd64:
|
# docker_fedora-25-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "fedora-25-amd64"
|
# IMG_NAME: "fedora-25-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_fedora-26-amd64:
|
# docker_fedora-26-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "fedora-26-amd64"
|
# IMG_NAME: "fedora-26-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_centos-7-amd64:
|
# docker_centos-7-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "centos-7-amd64"
|
# IMG_NAME: "centos-7-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_opensuse-42_3-amd64:
|
# docker_opensuse-42_3-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "opensuse-42.3-amd64"
|
# IMG_NAME: "opensuse-42.3-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_ubuntu-14_04-amd64:
|
# docker_ubuntu-14_04-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "ubuntu-14.04-amd64"
|
# IMG_NAME: "ubuntu-14.04-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
docker_ubuntu-16_04-amd64:
|
# docker_ubuntu-16_04-amd64:
|
||||||
variables:
|
# variables:
|
||||||
IMG_NAME: "ubuntu-16.04-amd64"
|
# IMG_NAME: "ubuntu-16.04-amd64"
|
||||||
<<: *docker_build
|
# <<: *docker_build
|
||||||
|
|
||||||
.debian-7-i386: &debian-7-i386_env
|
# .debian-7-i386: &debian-7-i386_env
|
||||||
image: registry.labs.nic.cz/labs/bird:debian-7-i386
|
# image: registry.labs.nic.cz/labs/bird:debian-7-i386
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.debian-8-i386: &debian-8-i386_env
|
# .debian-8-i386: &debian-8-i386_env
|
||||||
image: registry.labs.nic.cz/labs/bird:debian-8-i386
|
# image: registry.labs.nic.cz/labs/bird:debian-8-i386
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.debian-9-i386: &debian-9-i386_env
|
# .debian-9-i386: &debian-9-i386_env
|
||||||
image: registry.labs.nic.cz/labs/bird:debian-9-i386
|
# image: registry.labs.nic.cz/labs/bird:debian-9-i386
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.debian-testing-i386: &debian-testing-i386_env
|
# .debian-testing-i386: &debian-testing-i386_env
|
||||||
image: registry.labs.nic.cz/labs/bird:debian-testing-i386
|
# image: registry.labs.nic.cz/labs/bird:debian-testing-i386
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.debian-7-amd64: &debian-7-amd64_env
|
# .debian-7-amd64: &debian-7-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:debian-7-amd64
|
# image: registry.labs.nic.cz/labs/bird:debian-7-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.debian-8-amd64: &debian-8-amd64_env
|
# .debian-8-amd64: &debian-8-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:debian-8-amd64
|
# image: registry.labs.nic.cz/labs/bird:debian-8-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.debian-9-amd64: &debian-9-amd64_env
|
# .debian-9-amd64: &debian-9-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:debian-9-amd64
|
# image: registry.labs.nic.cz/labs/bird:debian-9-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.debian-testing-amd64: &debian-testing-amd64_env
|
# .debian-testing-amd64: &debian-testing-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:debian-testing-amd64
|
# image: registry.labs.nic.cz/labs/bird:debian-testing-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.fedora-25-amd64: &fedora-25-amd64_env
|
# .fedora-25-amd64: &fedora-25-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-25-amd64
|
# image: registry.labs.nic.cz/labs/bird:fedora-25-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.fedora-26-amd64: &fedora-26-amd64_env
|
# .fedora-26-amd64: &fedora-26-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:fedora-26-amd64
|
# image: registry.labs.nic.cz/labs/bird:fedora-26-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.centos-7-amd64: ¢os-7-amd64_env
|
# .centos-7-amd64: ¢os-7-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:centos-7-amd64
|
# image: registry.labs.nic.cz/labs/bird:centos-7-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.opensuse-42_3-amd64: &opensuse-42_3-amd64_env
|
# .opensuse-42_3-amd64: &opensuse-42_3-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:opensuse-42.3-amd64
|
# image: registry.labs.nic.cz/labs/bird:opensuse-42.3-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.ubuntu-14_04-amd64: &ubuntu-14_04-amd64_env
|
# .ubuntu-14_04-amd64: &ubuntu-14_04-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:ubuntu-14.04-amd64
|
# image: registry.labs.nic.cz/labs/bird:ubuntu-14.04-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
.ubuntu-16_04-amd64: &ubuntu-16_04-amd64_env
|
# .ubuntu-16_04-amd64: &ubuntu-16_04-amd64_env
|
||||||
image: registry.labs.nic.cz/labs/bird:ubuntu-16.04-amd64
|
# image: registry.labs.nic.cz/labs/bird:ubuntu-16.04-amd64
|
||||||
tags:
|
# tags:
|
||||||
- docker
|
# - docker
|
||||||
- linux
|
# - linux
|
||||||
- amd64
|
# - amd64
|
||||||
|
|
||||||
# TODO We want to copy these BSDs to our own virtual machines, to make sure someone doesn't update them by accident.
|
# # TODO We want to copy these BSDs to our own virtual machines, to make sure someone doesn't update them by accident.
|
||||||
.freebsd-11-i386: &freebsd-11-i386_env
|
# .freebsd-11-i386: &freebsd-11-i386_env
|
||||||
tags:
|
# tags:
|
||||||
- freebsd
|
# - freebsd
|
||||||
- i386
|
# - i386
|
||||||
#only:
|
# #only:
|
||||||
#- master
|
# #- master
|
||||||
#- triggers
|
# #- triggers
|
||||||
#- tags
|
# #- tags
|
||||||
|
|
||||||
.freebsd-11-amd64: &freebsd-11-amd64_env
|
# .freebsd-11-amd64: &freebsd-11-amd64_env
|
||||||
tags:
|
# tags:
|
||||||
- freebsd
|
# - freebsd
|
||||||
- amd64
|
# - amd64
|
||||||
#only:
|
# #only:
|
||||||
#- master
|
# #- master
|
||||||
#- triggers
|
# #- triggers
|
||||||
#- tags
|
# #- tags
|
||||||
|
|
||||||
.build: &build_job
|
.build: &build_job
|
||||||
stage: build
|
stage: build
|
||||||
@ -231,69 +229,69 @@ docker_ubuntu-16_04-amd64:
|
|||||||
# Run tests if they are available
|
# Run tests if they are available
|
||||||
- $MAKE check
|
- $MAKE check
|
||||||
|
|
||||||
build-debian-7-amd64:
|
# build-debian-7-amd64:
|
||||||
<<: *debian-7-amd64_env
|
# <<: *debian-7-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-debian-8-amd64:
|
# build-debian-8-amd64:
|
||||||
<<: *debian-8-amd64_env
|
# <<: *debian-8-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-debian-9-amd64:
|
# build-debian-9-amd64:
|
||||||
<<: *debian-9-amd64_env
|
# <<: *debian-9-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-debian-testing-amd64:
|
# build-debian-testing-amd64:
|
||||||
<<: *debian-testing-amd64_env
|
# <<: *debian-testing-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-fedora-25-amd64:
|
# build-fedora-25-amd64:
|
||||||
<<: *fedora-25-amd64_env
|
# <<: *fedora-25-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-fedora-26-amd64:
|
# build-fedora-26-amd64:
|
||||||
<<: *fedora-26-amd64_env
|
# <<: *fedora-26-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-centos-7-amd64:
|
# build-centos-7-amd64:
|
||||||
<<: *centos-7-amd64_env
|
# <<: *centos-7-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-opensuse-42_3-amd64:
|
# build-opensuse-42_3-amd64:
|
||||||
<<: *opensuse-42_3-amd64_env
|
# <<: *opensuse-42_3-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-ubuntu-14_04-amd64:
|
# build-ubuntu-14_04-amd64:
|
||||||
<<: *ubuntu-14_04-amd64_env
|
# <<: *ubuntu-14_04-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-ubuntu-16_04-amd64:
|
# build-ubuntu-16_04-amd64:
|
||||||
<<: *ubuntu-16_04-amd64_env
|
# <<: *ubuntu-16_04-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-debian-7-i386:
|
# build-debian-7-i386:
|
||||||
<<: *debian-7-i386_env
|
# <<: *debian-7-i386_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-debian-8-i386:
|
# build-debian-8-i386:
|
||||||
<<: *debian-8-i386_env
|
# <<: *debian-8-i386_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-debian-9-i386:
|
# build-debian-9-i386:
|
||||||
<<: *debian-9-i386_env
|
# <<: *debian-9-i386_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-debian-testing-i386:
|
# build-debian-testing-i386:
|
||||||
<<: *debian-testing-i386_env
|
# <<: *debian-testing-i386_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-freebsd-11-amd64:
|
# build-freebsd-11-amd64:
|
||||||
<<: *freebsd-11-amd64_env
|
# <<: *freebsd-11-amd64_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-freebsd-11-i386:
|
# build-freebsd-11-i386:
|
||||||
<<: *freebsd-11-i386_env
|
# <<: *freebsd-11-i386_env
|
||||||
<<: *build_job
|
# <<: *build_job
|
||||||
|
|
||||||
build-birdlab:
|
build-birdlab:
|
||||||
<<: *build_job
|
<<: *build_job
|
||||||
@ -302,27 +300,11 @@ build-birdlab:
|
|||||||
- amd64
|
- amd64
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
netlab:
|
netlab:
|
||||||
stage: netlab_prep
|
stage: netlab_prep
|
||||||
tags:
|
tags:
|
||||||
- birdlab
|
- birdlab
|
||||||
script:
|
script:
|
||||||
- echo "Prep-phase"
|
- echo "Prep-phase"
|
||||||
|
|
||||||
tests:
|
|
||||||
stage: runtest
|
|
||||||
tags:
|
|
||||||
- birdlab
|
|
||||||
script:
|
|
||||||
- echo "Install"
|
|
||||||
- ls -l
|
|
||||||
- pwd
|
- pwd
|
||||||
- echo "Done!"
|
- ls -l
|
||||||
|
|
||||||
cleaning:
|
|
||||||
stage: cleanup
|
|
||||||
tags:
|
|
||||||
- birdlab
|
|
||||||
script:
|
|
||||||
- echo "Cleaning phase"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user