diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2023-10-18 01:48:11 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2023-10-18 03:37:59 +0200 |
commit | c9b7b032110fbd49a5f084bfe3bc886e0e1edfe4 (patch) | |
tree | e91ca78172c227e0e672cc4afbc4b9c2449f3f59 /.gitlab-ci.yml | |
parent | 5973031460372a4d695c44a9f398d516b0e5bac1 (diff) |
CI: Update for new netlab worker
- Change tag from 'birdlab' to 'netlab'
- Change path of gitlab-runner home dir
- Use stayrtr from Debian
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index acaaab30..43f517cb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,8 +4,8 @@ variables: GIT_STRATEGY: fetch DOCKER_CMD: docker --config="$HOME/.docker/$CI_JOB_ID/" IMG_BASE: registry.nic.cz/labs/bird - TOOLS_DIR: /var/lib/gitlab-runner/bird-tools - STAYRTR_BINARY: /var/lib/gitlab-runner/stayrtr-0.1-108-g8d18a41-linux-x86_64 + TOOLS_DIR: /home/gitlab-runner/bird-tools + STAYRTR_BINARY: /usr/bin/stayrtr stages: # - image @@ -309,10 +309,10 @@ pkg-opensuse-15.3-amd64: image: registry.nic.cz/labs/bird:opensuse-15.3-amd64 -build-birdlab: +build-netlab: stage: build tags: - - birdlab + - netlab - amd64 script: - DIR=$(pwd) @@ -327,9 +327,9 @@ build-birdlab: .test: &test-base stage: test - needs: [build-birdlab] + needs: [build-netlab] tags: - - birdlab + - netlab - amd64 script: - cd $TOOLS_DIR/netlab |