| 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:
|
|
|