Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Unified Diff: appengine/findit/waterfall/build_info.py

Issue 1826633002: [Findit] Extract and pass failed targets from ninja to try-job. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Rebase. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | appengine/findit/waterfall/buildbot.py » ('j') | appengine/findit/waterfall/try_job_util.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/waterfall/build_info.py
diff --git a/appengine/findit/waterfall/build_info.py b/appengine/findit/waterfall/build_info.py
index dc95b7535d93284a4fb4376551322356d8c24f80..0e527c0eec9891bb94a40a4dcb67432f3363111d 100644
--- a/appengine/findit/waterfall/build_info.py
+++ b/appengine/findit/waterfall/build_info.py
@@ -14,6 +14,7 @@ class BuildInfo(object): # pragma: no cover
self.completed = False
self.result = None
self.blame_list = []
+ self.compile_failures = None
self.failed_steps = []
self.passed_steps = []
self.not_passed_steps = []
@@ -27,6 +28,7 @@ class BuildInfo(object): # pragma: no cover
print 'completed: %s' % self.completed
print 'result: %s' % self.result
print 'CLs: %s' % ', '.join(self.blame_list)
+ print 'Compile failures: %r' % self.compile_failures
print 'Failed steps: %s' % ', '.join(self.failed_steps)
print 'Passed steps: %s' % ', '.join(self.passed_steps)
print 'Not-passed steps: %s' % ', '.join(self.not_passed_steps)
« no previous file with comments | « no previous file | appengine/findit/waterfall/buildbot.py » ('j') | appengine/findit/waterfall/try_job_util.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698