0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-23 02:01:55 +00:00

bird: abs. path was updated

This commit is contained in:
Matous Holinka 2019-11-07 16:04:25 +01:00
parent c93875396a
commit 817dc15f8f

View File

@ -221,14 +221,16 @@ stages:
.build: &build_job .build: &build_job
stage: build stage: build
script: script:
- autoreconf - DIR=$(pwd)
- ./configure CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS" - autoreconf
# Detect which make is available - ./configure CPPFLAGS="$CPPFLAGS" LDFLAGS="$LDFLAGS"
- MAKE=make # Detect which make is available
- which gmake 2>/dev/null >/dev/null && MAKE=gmake - MAKE=make
- $MAKE - which gmake 2>/dev/null >/dev/null && MAKE=gmake
# Run tests if they are available - $MAKE
- $MAKE check # Run tests if they are available
- $MAKE check
- mv $DIR/bird $DIR/birdc /var/lib/gitlab-runner/
# build-debian-7-amd64: # build-debian-7-amd64:
# <<: *debian-7-amd64_env # <<: *debian-7-amd64_env
@ -297,11 +299,11 @@ stages:
build-birdlab: build-birdlab:
<<: *build_job <<: *build_job
script: script:
- DIR=$(pwd) #- DIR=$(pwd)
- cd /var/lib/gitlab-runner/bird-tools - cd /var/lib/gitlab-runner/bird-tools
- sudo git clean -fx - sudo git clean -fx
- git pull --ff-only - git pull --ff-only
- mv $DIR/bird $DIR/birdc /var/lib/gitlab-runner/bird-tools/netlab-int/common - mv /var/lib/gitlab-runner/bird /var/lib/gitlab-runner/birdc /var/lib/gitlab-runner/bird-tools/netlab-int/common
tags: tags:
- birdlab - birdlab
- amd64 - amd64