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

Unified Diff: appengine/findit/waterfall/buildbot.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
Index: appengine/findit/waterfall/buildbot.py
diff --git a/appengine/findit/waterfall/buildbot.py b/appengine/findit/waterfall/buildbot.py
index 0709671b2cdcc27543316f8ed9e0b12eb7c93096..a631834eb99a8fa462154d9993f482b99488b995 100644
--- a/appengine/findit/waterfall/buildbot.py
+++ b/appengine/findit/waterfall/buildbot.py
@@ -198,6 +198,8 @@ def ExtractBuildInfo(master_name, builder_name, build_number, build_data):
build_info.chromium_revision = chromium_revision
build_info.completed = data_json.get('currentStep') is None
build_info.result = GetBuildResult(data_json)
+ build_info.compile_failures = GetBuildProperty(
+ data_json.get('properties', []), 'compile_failures')
changes = data_json.get('sourceStamp', {}).get('changes', [])
for change in changes:

Powered by Google App Engine
This is Rietveld 408576698