Chromium Code Reviews| Index: recipe_engine/step_runner.py |
| diff --git a/recipe_engine/step_runner.py b/recipe_engine/step_runner.py |
| index c4d166f9abc283ddd36ece58a27ecb81f8756d06..8e78b453dcaa955d0be349693eec1be7b7765f8b 100644 |
| --- a/recipe_engine/step_runner.py |
| +++ b/recipe_engine/step_runner.py |
| @@ -43,9 +43,7 @@ class StepRunner(object): |
| cwd: absolute path to working directory for the command |
| env: dict with overrides for environment variables |
| allow_subannotations: if True, lets the step emit its own annotations |
| - trigger_specs: a list of trigger specifications, which are dict with keys: |
| - properties: a dict of properties. |
| - Buildbot requires buildername property. |
| + trigger_specs: a list of trigger specifications, see also _trigger_builds. |
| stdout: Path to a file to put step stdout into. If used, stdout won't |
| appear in annotator's stdout (and |allow_subannotations| is |
| ignored). |
| @@ -337,6 +335,8 @@ class SubprocessStepRunner(StepRunner): |
| 'builderNames': [builder_name], |
| 'bucket': trig.get('bucket'), |
| 'changes': changes, |
| + # if True and triggering fails asynchronously, fail entire build. |
|
nodir
2016/05/04 17:28:13
implemented in https://codereview.chromium.org/194
|
| + 'critical': trig.get('critical', True), |
| 'properties': trig.get('properties'), |
| 'tags': trig.get('tags'), |
| }, sort_keys=True)) |