OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "[BUILD]/scripts/slave/bot_update.py", | 6 "[BUILD]/scripts/slave/bot_update.py", |
7 "--master", | 7 "--master", |
8 "chromium.linux", | 8 "chromium.linux", |
9 "--builder", | 9 "--builder", |
10 "Android GN", | 10 "Android GN", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
175 "[BUILD]/goma", | 175 "[BUILD]/goma", |
176 "//out/Release" | 176 "//out/Release" |
177 ], | 177 ], |
178 "cwd": "[SLAVE_BUILD]", | 178 "cwd": "[SLAVE_BUILD]", |
179 "name": "generate_build_files" | 179 "name": "generate_build_files" |
180 }, | 180 }, |
181 { | 181 { |
182 "cmd": [ | 182 "cmd": [ |
183 "python", | 183 "python", |
184 "-u", | 184 "-u", |
185 "import sys; sys.exit(1)" | 185 "[BUILD]/scripts/slave/compile.py", |
| 186 "--target", |
| 187 "Release", |
| 188 "--src-dir", |
| 189 "[SLAVE_BUILD]/src", |
| 190 "--build-tool", |
| 191 "ninja", |
| 192 "--compiler", |
| 193 "goma", |
| 194 "--goma-dir", |
| 195 "[BUILD]/goma", |
| 196 "--" |
186 ], | 197 ], |
187 "cwd": "[SLAVE_BUILD]", | 198 "cwd": "[SLAVE_BUILD]", |
188 "name": "compile", | 199 "env": { |
189 "~followup_annotations": [ | 200 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" |
190 "step returned non-zero exit code: 1", | 201 }, |
191 "@@@STEP_TEXT@Misconfigured bot: no compile targets@@@", | 202 "name": "compile" |
192 "@@@STEP_FAILURE@@@" | |
193 ] | |
194 }, | |
195 { | |
196 "name": "$final_result", | |
197 "reason": "Step('compile') failed with return_code 1", | |
198 "status_code": 1 | |
199 } | 203 } |
200 ] | 204 ] |
OLD | NEW |