mirror of
https://github.com/clearml/clearml-agent
synced 2025-04-05 13:05:10 +00:00
Move ssh filter into regex and use list.insert in path
This commit is contained in:
parent
04fa8a9a86
commit
f640eb6707
@ -219,13 +219,15 @@ class VCS(object):
|
||||
return branch
|
||||
|
||||
# parse scp-like git ssh URLs, e.g: git@host:user/project.git
|
||||
# or git@ssh.dev.azure.com:v3/org/project/repo
|
||||
SSH_URL_GIT_SYNTAX = re.compile(
|
||||
r"""
|
||||
^
|
||||
(?:(?P<user>{regular}*?)@)?
|
||||
(?:ssh\.)?
|
||||
(?P<host>{regular}*?)
|
||||
:
|
||||
(?:v3/)? # present in azure ssh urls
|
||||
(?:v3/)?
|
||||
(?P<path>{regular}.*)?
|
||||
$
|
||||
""".format(
|
||||
@ -255,14 +257,12 @@ class VCS(object):
|
||||
if match:
|
||||
user, host, path = match.groups()
|
||||
|
||||
# handle special azure cases
|
||||
if "ssh" and "azure" in host:
|
||||
host = host.replace("ssh.", "")
|
||||
|
||||
# azure http url is different than ssh url
|
||||
# the format is https://dev.azure.com/{organization}/{project}/_git/{repo}
|
||||
# handle the dev.azure format by inserting _git between project and repo
|
||||
# as format is https://dev.azure.com/{organization}/{project}/_git/{repo}
|
||||
if "azure" in host:
|
||||
path_components = path.split("/")
|
||||
path = "/".join(path_components[:-1]) + "/_git/" + path_components[-1]
|
||||
path_components.insert(-1, "_git")
|
||||
path = "/".join(path_components)
|
||||
|
||||
return (
|
||||
furl()
|
||||
|
Loading…
Reference in New Issue
Block a user