From 65b88a21980d73fc52c19308410548f40cee53c7 Mon Sep 17 00:00:00 2001 From: Dennis Eisold <de@roadit.de> Date: Sun, 20 Oct 2019 04:48:18 +0200 Subject: [PATCH] Gitlab-CI Test --- .gitlab-ci.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c7199f4d..0333163e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: buster:latest +image: debian/latest cache: key: ${CI_COMMIT_REF_SLUG} @@ -16,6 +16,7 @@ Settings: script: - ./buildscript selectbsp bsp/board_ar71xx.bsp - ./buildscript selectcommunity community/franken.cfg + - ./buildscript selectvariant node Prepare: script: @@ -27,3 +28,15 @@ Build: - $CI_COMMIT_MESSAGE =~ /do_build/ script: - ./buildscript build + +Local: + stage: testing + only: + variables: + - $CI_COMMIT_MESSAGE =~ /TestLocal/ + script: + - ./buildscript selectbsp bsp/board_ar71xx.bsp + - ./buildscript selectcommunity community/franken.cfg + - ./buildscript selectvariant node + - ./buildscript prepare + - ./buildscript build -- GitLab