aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/gcb/builds_status.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/gcb/builds_status.py')
-rwxr-xr-xinfra/gcb/builds_status.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/infra/gcb/builds_status.py b/infra/gcb/builds_status.py
index 891b5ae6..0b2fe15e 100755
--- a/infra/gcb/builds_status.py
+++ b/infra/gcb/builds_status.py
@@ -66,6 +66,7 @@ def find_last_build(builds, project, build_tag_suffix):
builds = builds.get(tag)
if not builds:
+ print >>sys.stderr, 'Failed to find builds with tag', tag
return None
for build in builds:
@@ -123,7 +124,7 @@ def get_builds(cloudbuild):
projectId='oss-fuzz', pageSize=page_size, pageToken=next_page_token))
if not 'builds' in response:
- print >> sys.stderr, 'Invalid response', response
+ print >> sys.stderr, 'Invalid response from builds list:', response
return None
ungrouped_builds.extend(response['builds'])