[infra] Fix builds status to filter on correct image tag.

This commit is contained in:
Oliver Chang 2017-03-17 10:47:55 -07:00
parent eca80420cf
commit 0976833b18
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ def main():
for project in scan_project_names(projects_dir):
print project
query_filter = ('(status="SUCCESS" OR status="FAILURE") AND ' +
'images="gcr.io/clusterfuzz-external/oss-fuzz/{0}"'.format(project))
'images="gcr.io/oss-fuzz/{0}"'.format(project))
response = cloudbuild.projects().builds().list(
projectId='clusterfuzz-external',
filter=query_filter).execute()