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.fyi", | 8 "chromium.fyi", |
9 "--builder", | 9 "--builder", |
10 "ClangToTAndroidASan", | 10 "ClangToTAndroidASan", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 "allow_subannotations": false, | 152 "allow_subannotations": false, |
153 "cmd": [ | 153 "cmd": [ |
154 "[SLAVE_BUILD]/src/build/tree_truth.sh", | 154 "[SLAVE_BUILD]/src/build/tree_truth.sh", |
155 "[SLAVE_BUILD]/src", | 155 "[SLAVE_BUILD]/src", |
156 "src" | 156 "src" |
157 ], | 157 ], |
158 "cwd": "[SLAVE_BUILD]", | 158 "cwd": "[SLAVE_BUILD]", |
159 "name": "tree truth steps" | 159 "name": "tree truth steps" |
160 }, | 160 }, |
161 { | 161 { |
162 "allow_subannotations": true, | |
163 "cmd": [ | |
164 "python", | |
165 "-u", | |
166 "[BUILD]/scripts/slave/clang_revision.py", | |
167 "--src-dir", | |
168 "[SLAVE_BUILD]/src", | |
169 "--output-json", | |
170 "/path/to/tmp/json" | |
171 ], | |
172 "cwd": "[SLAVE_BUILD]", | |
173 "env": { | |
174 "LLVM_FORCE_HEAD_REVISION": "YES", | |
175 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | |
176 }, | |
177 "name": "clang_revision", | |
178 "~followup_annotations": [ | |
179 "@@@STEP_LOG_LINE@json.output@{@@@", | |
180 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", | |
181 "@@@STEP_LOG_LINE@json.output@}@@@", | |
182 "@@@STEP_LOG_END@json.output@@@" | |
183 ] | |
184 }, | |
185 { | |
186 "cmd": [ | 162 "cmd": [ |
187 "python", | 163 "python", |
188 "-u", | 164 "-u", |
189 "[BUILD]/scripts/slave/compile.py", | 165 "import sys; sys.exit(1)" |
190 "--target", | |
191 "Debug", | |
192 "--src-dir", | |
193 "[SLAVE_BUILD]/src", | |
194 "--build-tool", | |
195 "ninja", | |
196 "--compiler", | |
197 "clang", | |
198 "--", | |
199 "all", | |
200 "base_junit_tests", | |
201 "chrome_public_test_apk", | |
202 "components_browsertests_apk", | |
203 "gfx_unittests_apk" | |
204 ], | 166 ], |
205 "cwd": "[SLAVE_BUILD]", | 167 "cwd": "[SLAVE_BUILD]", |
206 "env": { | 168 "name": "compile", |
207 "LLVM_FORCE_HEAD_REVISION": "YES", | 169 "~followup_annotations": [ |
208 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S
LAVE_BUILD]/src/build/android:%(PATH)s" | 170 "step returned non-zero exit code: 1", |
209 }, | 171 "@@@STEP_TEXT@Misconfigured bot: no compile targets@@@", |
210 "name": "compile" | 172 "@@@STEP_FAILURE@@@" |
| 173 ] |
211 }, | 174 }, |
212 { | 175 { |
213 "allow_subannotations": true, | 176 "name": "$final_result", |
214 "cmd": [ | 177 "reason": "Step('compile') failed with return_code 1", |
215 "python", | 178 "status_code": 1 |
216 "-u", | |
217 "[BUILD]/scripts/slave/zip_build.py", | |
218 "--target", | |
219 "Debug", | |
220 "--build-url", | |
221 "gs://chromium-fyi-archive/chromium.fyi/ClangToTAndroidASan", | |
222 "--build_revision", | |
223 "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9", | |
224 "--factory-properties", | |
225 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"ClangToTAndroidASan\", \"buildnumber\": 571, \"mastername\": \"
chromium.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slaven
ame\": \"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}", | |
226 "--build-properties", | |
227 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"ClangToTAndroidASan\", \"buildnumber\": 571, \"mastername\": \"
chromium.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slaven
ame\": \"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}" | |
228 ], | |
229 "cwd": "[SLAVE_BUILD]", | |
230 "name": "package build" | |
231 }, | |
232 { | |
233 "cmd": [], | |
234 "cwd": "[SLAVE_BUILD]", | |
235 "name": "trigger", | |
236 "trigger_specs": [ | |
237 { | |
238 "builder_name": "ClangToTAndroidASan tester" | |
239 } | |
240 ], | |
241 "~followup_annotations": [ | |
242 "@@@STEP_TEXT@ClangToTAndroidASan tester@@@" | |
243 ] | |
244 } | 179 } |
245 ] | 180 ] |
OLD | NEW |