[NFC] Fix build URL (#8039)

Fix build URL
This commit is contained in:
jonathanmetzman 2022-07-20 14:25:14 -04:00 committed by GitHub
parent a1f62a25ff
commit d50556b758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ def get_logs_url(build_id, project_id='oss-fuzz-base'):
def get_gcb_url(build_id, cloud_project='oss-fuzz'): def get_gcb_url(build_id, cloud_project='oss-fuzz'):
"""Returns url where logs are displayed for the build.""" """Returns url where logs are displayed for the build."""
return (f'https://console.cloud.google.com/cloud-build/builds/{build_id}' return (f'https://console.cloud.google.com/cloud-build/builds;region=us-central1/{build_id}'
f'?project={cloud_project}') f'?project={cloud_project}')