Skip to content
Snippets Groups Projects
Verified Commit b0045246 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: pipeline

parent 6fd2c80f
No related branches found
No related tags found
2 merge requests!44Release 0.6,!43Merge f-GRPC-main to dev
Pipeline #9894 passed
...@@ -87,15 +87,15 @@ trigger_build: ...@@ -87,15 +87,15 @@ trigger_build:
# TODO remove, this is grpc-special stuff # TODO remove, this is grpc-special stuff
# server in f-grpc-dev branch matches with dev branch of cpplib/cppinttest # 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; F_BRANCH=dev;
fi fi
# server in f-grpc-main branch matches with main branch of cpplib/cppinttest # 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; F_BRANCH=main;
fi fi
# server in f-grpc-f-something branch matches with f-something branch of cpplib/cppinttest # 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}"`; F_BRANCH=`echo "${F_BRANCH:7}"`;
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment