diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-11-10 03:43:30 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-11-26 19:43:56 +0100 |
commit | 148bd9ee92c55ba23be2d60a278dfa7ad0005971 (patch) | |
tree | 2dcf6ebffa822d22df6f70ee825f85aecf2e0f20 /.gitlab-ci.yml | |
parent | faa43a755eba5194c50fae20dddc0e3837fe5dc5 (diff) |
CI: Minor update
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 039dbf5e..e00a8d6c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -309,11 +309,17 @@ build-birdlab: - git pull --ff-only - mv $DIR/bird $DIR/birdc netlab-int/common -running_test: +.test: &test_job stage: test + needs: [build-birdlab] tags: - birdlab - amd64 script: - cd $TOOLS_DIR/netlab-int - - sudo ./runtest -m check cf-ospf + - sudo ./runtest -m check $TEST_NAME + +test-ospf: + variables: + TEST_NAME: cf-ospf + <<: *test_job |