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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "--config-file", | 149 "--config-file", |
150 "[SLAVE_BUILD]\\src\\tools\\mb\\mb_config.pyl", | 150 "[SLAVE_BUILD]\\src\\tools\\mb\\mb_config.pyl", |
151 "--goma-dir", | 151 "--goma-dir", |
152 "[BUILD]\\goma", | 152 "[BUILD]\\goma", |
153 "//out/Debug_x64" | 153 "//out/Debug_x64" |
154 ], | 154 ], |
155 "cwd": "[SLAVE_BUILD]", | 155 "cwd": "[SLAVE_BUILD]", |
156 "name": "generate_build_files" | 156 "name": "generate_build_files" |
157 }, | 157 }, |
158 { | 158 { |
159 "allow_subannotations": true, | |
160 "cmd": [ | |
161 "python", | |
162 "-u", | |
163 "[BUILD]\\scripts\\slave\\clang_revision.py", | |
164 "--src-dir", | |
165 "[SLAVE_BUILD]\\src", | |
166 "--output-json", | |
167 "/path/to/tmp/json" | |
168 ], | |
169 "cwd": "[SLAVE_BUILD]", | |
170 "name": "clang_revision", | |
171 "~followup_annotations": [ | |
172 "@@@STEP_LOG_LINE@json.output@{@@@", | |
173 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", | |
174 "@@@STEP_LOG_LINE@json.output@}@@@", | |
175 "@@@STEP_LOG_END@json.output@@@" | |
176 ] | |
177 }, | |
178 { | |
179 "cmd": [ | 159 "cmd": [ |
180 "python", | 160 "python", |
181 "-u", | 161 "-u", |
182 "[BUILD]\\scripts\\slave\\compile.py", | 162 "import sys; sys.exit(1)" |
183 "--target", | |
184 "Debug_x64", | |
185 "--src-dir", | |
186 "[SLAVE_BUILD]\\src", | |
187 "--build-tool", | |
188 "ninja", | |
189 "--compiler", | |
190 "clang", | |
191 "--", | |
192 "all", | |
193 "crash_service" | |
194 ], | 163 ], |
195 "cwd": "[SLAVE_BUILD]", | 164 "cwd": "[SLAVE_BUILD]", |
196 "name": "compile" | 165 "name": "compile", |
| 166 "~followup_annotations": [ |
| 167 "step returned non-zero exit code: 1", |
| 168 "@@@STEP_TEXT@Misconfigured bot: no compile targets@@@", |
| 169 "@@@STEP_FAILURE@@@" |
| 170 ] |
197 }, | 171 }, |
198 { | 172 { |
199 "allow_subannotations": true, | 173 "name": "$final_result", |
200 "cmd": [ | 174 "reason": "Step('compile') failed with return_code 1", |
201 "python", | 175 "status_code": 1 |
202 "-u", | |
203 "[BUILD]\\scripts\\slave\\zip_build.py", | |
204 "--target", | |
205 "Debug_x64", | |
206 "--build-url", | |
207 "gs://chromium-fyi-archive/chromium.fyi/CrWinClang64(dbg)", | |
208 "--build_revision", | |
209 "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9", | |
210 "--factory-properties", | |
211 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"CrWinClang64(dbg)\", \"buildnumber\": 571, \"mastername\": \"ch
romium.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavenam
e\": \"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}", | |
212 "--build-properties", | |
213 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"CrWinClang64(dbg)\", \"buildnumber\": 571, \"mastername\": \"ch
romium.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavenam
e\": \"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}" | |
214 ], | |
215 "cwd": "[SLAVE_BUILD]", | |
216 "name": "package build" | |
217 }, | |
218 { | |
219 "cmd": [], | |
220 "cwd": "[SLAVE_BUILD]", | |
221 "name": "trigger", | |
222 "trigger_specs": [ | |
223 { | |
224 "builder_name": "CrWinClang64(dbg) tester" | |
225 } | |
226 ], | |
227 "~followup_annotations": [ | |
228 "@@@STEP_TEXT@CrWinClang64(dbg) tester@@@" | |
229 ] | |
230 } | 176 } |
231 ] | 177 ] |
OLD | NEW |