Skip to content
Snippets Groups Projects
Commit c30a2fa6 authored by Raphael Defosseux's avatar Raphael Defosseux
Browse files

CI: little fix in main python script


Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent ddcab3a6
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,7 @@ class SSHConnection():
self.command('git checkout -f ' + self.eNBCommitID, '\$', 5)
# if the branch is not develop, then it is a merge request and we need to do
# the potential merge. Note that merge conflicts should already been checked earlier
if self.eNBBranch != 'develop':
if (self.eNBBranch != 'develop') and (self.eNBBranch != 'origin/develop'):
self.command('git merge --ff origin/develop -m "Temporary merge for CI"', '\$', 5)
self.command('source oaienv', '\$', 5)
self.command('cd cmake_targets', '\$', 5)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment