Skip to content
Snippets Groups Projects
Commit 5b96aa8e authored by Robert Schmidt's avatar Robert Schmidt
Browse files

Fix error

parent d80d0b5d
No related branches found
No related tags found
No related merge requests found
...@@ -60,9 +60,10 @@ def CreateWorkspace(sshSession, sourcePath, ranRepository, ranCommitID, ranTarge ...@@ -60,9 +60,10 @@ def CreateWorkspace(sshSession, sourcePath, ranRepository, ranCommitID, ranTarge
sshSession.command(f'rm -rf {sourcePath}', '\$', 10) sshSession.command(f'rm -rf {sourcePath}', '\$', 10)
sshSession.command('mkdir -p ' + sourcePath, '\$', 5) sshSession.command('mkdir -p ' + sourcePath, '\$', 5)
sshSession.command('cd ' + sourcePath, '\$', 5) sshSession.command('cd ' + sourcePath, '\$', 5)
sshSession.command(f'git clone --filter=blob:none -n -b develop {full_ran_repo_name} .', '\$', 60) # Recent version of git (>2.20?) should handle missing .git extension # without problems
if sshSession.getBefore().count('done.') == 0: sshSession.command(f'git clone --filter=blob:none -n -b develop {ranRepository} .', '\$', 60)
logging.warning('did not find \'done.\' in git output while cloning/fetching, was not successful?') if sshSession.getBefore().count('error') > 0 or sshSession.getBefore().count('error') > 0:
sys.exit('error during clone')
sshSession.command('git config user.email "jenkins@openairinterface.org"', '\$', 5) sshSession.command('git config user.email "jenkins@openairinterface.org"', '\$', 5)
sshSession.command('git config user.name "OAI Jenkins"', '\$', 5) sshSession.command('git config user.name "OAI Jenkins"', '\$', 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