From b78bad6ab31d3e6d3351070c847dc8ce05e21069 Mon Sep 17 00:00:00 2001 From: Daniel Firth Date: Fri, 9 Dec 2016 12:15:25 +0000 Subject: Add shortcut for checking ybd branches. Branches that follow the pattern "staging/fromybd/$1" will `git checkout ybd -b $1` --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9245c981..d63b33c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,8 @@ stages: before_script: - export LC_ALL="C.UTF-8" - apt-get update -qq && apt-get install -y -qq git - - git clone https://gitlab.com/baserock/ybd.git + - export CI_YBD_BRANCH=`[[ "$CI_BUILD_REF_NAME" =~ ^staging/fromybd/ ]] && echo -b ${CI_BUILD_REF_NAME#staging/fromybd/}` + - git clone https://gitlab.com/baserock/ybd.git $CI_YBD_BRANCH - cd ybd && ./install_dependencies.sh && cd .. build-system-x86_64-chroot-build: -- cgit v1.2.1