From b00452462a014fad87a08610fb982e9d2ca58094 Mon Sep 17 00:00:00 2001
From: Timm Fitschen <t.fitschen@indiscale.com>
Date: Tue, 6 Jul 2021 12:36:36 +0200
Subject: [PATCH] WIP: pipeline

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e36ae81f..9d8f1f51 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -87,15 +87,15 @@ trigger_build:
 
     # TODO remove, this is grpc-special stuff
     # server in f-grpc-dev branch matches with dev branch of cpplib/cppinttest
-    - if echo "$SERVER" | grep -c "^f-grpc-dev$"; then
+    - if echo "$F_BRANCH" | grep -c "^f-grpc-dev$"; then
         F_BRANCH=dev;
       fi
     # server in f-grpc-main branch matches with main branch of cpplib/cppinttest
-    - if echo "$SERVER" | grep -c "^f-grpc-main$"; then
+    - if echo "$F_BRANCH" | grep -c "^f-grpc-main$"; then
         F_BRANCH=main;
       fi
     # server in f-grpc-f-something branch matches with f-something branch of cpplib/cppinttest
-    - if echo "$SERVER" | grep -c "^f-grpc-f-.*$"; then
+    - if echo "$F_BRANCH" | grep -c "^f-grpc-f-.*$"; then
         F_BRANCH=`echo "${F_BRANCH:7}"`;
       fi
 
-- 
GitLab