From 62081f636fb311950cb685b4f5a8b57dd341567b Mon Sep 17 00:00:00 2001 From: Matous Holinka Date: Wed, 6 Nov 2019 09:10:59 +0100 Subject: [PATCH] bird: netlab installation stage now has two different jobs (cloning + preparing) --- .gitlab-ci.yml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0aa3e6d0..92881c62 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,7 +8,8 @@ variables: stages: # - image - build - - netlab_prep + - get_nl + - nl_prep # .docker: &docker_build # stage: image @@ -299,15 +300,20 @@ build-birdlab: - birdlab - amd64 - -netlab: - stage: netlab_prep +cloning_netlab: + stage: get_nl tags: - birdlab script: - - echo "Prep-phase" + - echo 'Cloning Netlab from repository' - pwd - cd ../ - - pwd + - git clone https://gitlab.labs.nic.cz/labs/bird-tools --branch oz-test-base - ls -l - - echo 'Cloning the repository' + +preparing_netlab: + stage: nl_prep + tags: + - birdlab + script: + - echo 'Preparing netlab'