OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "[BUILD]\\scripts\\slave\\kill_processes.py" | 6 "[BUILD]\\scripts\\slave\\kill_processes.py" |
7 ], | 7 ], |
8 "cwd": "[SLAVE_BUILD]", | 8 "cwd": "[SLAVE_BUILD]", |
9 "name": "taskkill" | 9 "name": "taskkill" |
10 }, | 10 }, |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "-u", | 123 "-u", |
124 "[BUILD]\\scripts\\slave\\cleanup_temp.py" | 124 "[BUILD]\\scripts\\slave\\cleanup_temp.py" |
125 ], | 125 ], |
126 "cwd": "[SLAVE_BUILD]", | 126 "cwd": "[SLAVE_BUILD]", |
127 "name": "cleanup_temp" | 127 "name": "cleanup_temp" |
128 }, | 128 }, |
129 { | 129 { |
130 "cmd": [ | 130 "cmd": [ |
131 "python", | 131 "python", |
132 "-u", | 132 "-u", |
133 "import sys; sys.exit(1)" | 133 "[BUILD]\\scripts\\slave\\compile.py", |
| 134 "--target", |
| 135 "Release_x64", |
| 136 "--src-dir", |
| 137 "[SLAVE_BUILD]\\src", |
| 138 "--build-tool", |
| 139 "ninja", |
| 140 "--compiler", |
| 141 "goma", |
| 142 "--goma-dir", |
| 143 "[BUILD]\\goma", |
| 144 "--", |
| 145 "All", |
| 146 "chromium_builder_tests" |
134 ], | 147 ], |
135 "cwd": "[SLAVE_BUILD]", | 148 "cwd": "[SLAVE_BUILD]", |
136 "name": "compile", | 149 "name": "compile" |
137 "~followup_annotations": [ | |
138 "step returned non-zero exit code: 1", | |
139 "@@@STEP_TEXT@Misconfigured bot: no compile targets@@@", | |
140 "@@@STEP_FAILURE@@@" | |
141 ] | |
142 }, | |
143 { | |
144 "name": "$final_result", | |
145 "reason": "Step('compile') failed with return_code 1", | |
146 "status_code": 1 | |
147 } | 150 } |
148 ] | 151 ] |
OLD | NEW |