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

Unified Diff: appengine/findit/waterfall/detect_first_failure_pipeline.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/detect_first_failure_pipeline.py
diff --git a/appengine/findit/waterfall/detect_first_failure_pipeline.py b/appengine/findit/waterfall/detect_first_failure_pipeline.py
index f5f728a9be271054396a457314413c4da6c4ef58..6679213f6e5c395a39d4a13e8b3f02c0a7de5124 100644
--- a/appengine/findit/waterfall/detect_first_failure_pipeline.py
+++ b/appengine/findit/waterfall/detect_first_failure_pipeline.py
@@ -421,6 +421,11 @@ class DetectFirstFailurePipeline(BasePipeline):
...
],
}
+ },
+ "compile_failures": {
+ "failed_targets": ["obj/path/to/file.o"],
+ "unknown_targets": [],
+ "unrecognized_format": false,
}
}
"""
@@ -440,6 +445,7 @@ class DetectFirstFailurePipeline(BasePipeline):
'builds': {},
'failed_steps': {},
'failure_type': build_failure_type,
+ 'compile_failures': build_info.compile_failures,
}
if build_info.result == buildbot.SUCCESS or not build_info.failed_steps:

Powered by Google App Engine
This is Rietveld 408576698