This commit is contained in:
mads-oestergaard 2025-03-10 22:27:14 +01:00 committed by GitHub
commit 6dedb4ab41
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 0 deletions

View File

@ -218,12 +218,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/)?
(?P<path>{regular}.*)?
$
""".format(
@ -252,6 +255,14 @@ class VCS(object):
match = cls.SSH_URL_GIT_SYNTAX.match(url)
if match:
user, host, path = match.groups()
# 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_components.insert(-1, "_git")
path = "/".join(path_components)
return (
furl()
.set(scheme="https", username=get_username(user), host=host, path=path)

View File

@ -16,6 +16,7 @@ from clearml_agent.helper.repo import VCS
("ftp://example.com/a/b/", None),
("github.com:foo/bar.git", "https://github.com/foo/bar.git"),
("git@github.com:foo/bar.git", "https://github.com/foo/bar.git"),
("git@ssh.dev.azure.com:v3/org/project/repo", "https://dev.azure.com/org/project/_git/repo"),
("bitbucket.org:foo/bar.git", "https://bitbucket.org/foo/bar.git"),
("hg@bitbucket.org:foo/bar.git", "https://bitbucket.org/foo/bar.git"),
("ssh://bitbucket.org/foo/bar.git", "https://bitbucket.org/foo/bar.git"),