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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 "-u", | 158 "-u", |
159 "RECIPE_MODULE[isolate]\\resources\\find_isolated_tests.py", | 159 "RECIPE_MODULE[isolate]\\resources\\find_isolated_tests.py", |
160 "--build-dir", | 160 "--build-dir", |
161 "[SLAVE_BUILD]\\src\\out\\Release", | 161 "[SLAVE_BUILD]\\src\\out\\Release", |
162 "--clean-isolated-files" | 162 "--clean-isolated-files" |
163 ], | 163 ], |
164 "cwd": "[SLAVE_BUILD]", | 164 "cwd": "[SLAVE_BUILD]", |
165 "name": "clean isolated files" | 165 "name": "clean isolated files" |
166 }, | 166 }, |
167 { | 167 { |
168 "name": "$final_result", | 168 "allow_subannotations": true, |
169 "reason": "Misconfigured bot: no compile targets", | 169 "cmd": [ |
170 "status_code": 1 | 170 "python", |
| 171 "-u", |
| 172 "[BUILD]\\scripts\\slave\\clang_revision.py", |
| 173 "--src-dir", |
| 174 "[SLAVE_BUILD]\\src", |
| 175 "--output-json", |
| 176 "/path/to/tmp/json" |
| 177 ], |
| 178 "cwd": "[SLAVE_BUILD]", |
| 179 "env": { |
| 180 "LLVM_FORCE_HEAD_REVISION": "YES" |
| 181 }, |
| 182 "name": "clang_revision", |
| 183 "~followup_annotations": [ |
| 184 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 185 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", |
| 186 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 187 "@@@STEP_LOG_END@json.output@@@" |
| 188 ] |
| 189 }, |
| 190 { |
| 191 "cmd": [ |
| 192 "python", |
| 193 "-u", |
| 194 "[BUILD]\\scripts\\slave\\compile.py", |
| 195 "--target", |
| 196 "Release", |
| 197 "--src-dir", |
| 198 "[SLAVE_BUILD]\\src", |
| 199 "--build-tool", |
| 200 "ninja", |
| 201 "--compiler", |
| 202 "clang", |
| 203 "--mode", |
| 204 "official", |
| 205 "--clobber", |
| 206 "--" |
| 207 ], |
| 208 "cwd": "[SLAVE_BUILD]", |
| 209 "env": { |
| 210 "LLVM_FORCE_HEAD_REVISION": "YES" |
| 211 }, |
| 212 "name": "compile" |
| 213 }, |
| 214 { |
| 215 "cmd": [ |
| 216 "python", |
| 217 "-u", |
| 218 "RECIPE_MODULE[isolate]\\resources\\remove_build_metadata.py", |
| 219 "--build-dir", |
| 220 "[SLAVE_BUILD]\\src\\out\\Release", |
| 221 "--src-dir", |
| 222 "[SLAVE_BUILD]\\src" |
| 223 ], |
| 224 "cwd": "[SLAVE_BUILD]", |
| 225 "name": "remove_build_metadata" |
| 226 }, |
| 227 { |
| 228 "cmd": [ |
| 229 "python", |
| 230 "-u", |
| 231 "RECIPE_MODULE[isolate]\\resources\\isolate.py", |
| 232 "[SLAVE_BUILD]\\src\\tools\\swarming_client", |
| 233 "batcharchive", |
| 234 "--dump-json", |
| 235 "/path/to/tmp/json", |
| 236 "--isolate-server", |
| 237 "https://isolateserver.appspot.com", |
| 238 "--verbose", |
| 239 "[SLAVE_BUILD]\\src\\out\\Release\\browser_tests.isolated.gen.json" |
| 240 ], |
| 241 "cwd": "[SLAVE_BUILD]", |
| 242 "name": "isolate tests", |
| 243 "~followup_annotations": [ |
| 244 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 245 "@@@STEP_LOG_LINE@json.output@ \"browser_tests\": \"[dummy hash for brows
er_tests]\"@@@", |
| 246 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 247 "@@@STEP_LOG_END@json.output@@@" |
| 248 ] |
| 249 }, |
| 250 { |
| 251 "allow_subannotations": true, |
| 252 "cmd": [ |
| 253 "python", |
| 254 "-u", |
| 255 "[BUILD]\\scripts\\slave\\zip_build.py", |
| 256 "--target", |
| 257 "Release", |
| 258 "--build-url", |
| 259 "gs://chromium-fyi-archive/chromium.fyi/ClangToTWin", |
| 260 "--build_revision", |
| 261 "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9", |
| 262 "--factory-properties", |
| 263 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"ClangToTWin\", \"buildnumber\": 571, \"mastername\": \"chromium
.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavename\": \
"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}", |
| 264 "--build-properties", |
| 265 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"ClangToTWin\", \"buildnumber\": 571, \"mastername\": \"chromium
.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavename\": \
"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}" |
| 266 ], |
| 267 "cwd": "[SLAVE_BUILD]", |
| 268 "name": "package build" |
| 269 }, |
| 270 { |
| 271 "cmd": [], |
| 272 "cwd": "[SLAVE_BUILD]", |
| 273 "name": "trigger", |
| 274 "trigger_specs": [ |
| 275 { |
| 276 "builder_name": "ClangToTWin tester" |
| 277 } |
| 278 ], |
| 279 "~followup_annotations": [ |
| 280 "@@@STEP_TEXT@ClangToTWin tester@@@" |
| 281 ] |
| 282 }, |
| 283 { |
| 284 "cmd": [ |
| 285 "python", |
| 286 "-u", |
| 287 "[BUILD]\\scripts\\slave\\chromium\\run_crash_handler.py", |
| 288 "--target", |
| 289 "Release" |
| 290 ], |
| 291 "cwd": "[SLAVE_BUILD]", |
| 292 "name": "start_crash_service" |
| 293 }, |
| 294 { |
| 295 "allow_subannotations": true, |
| 296 "cmd": [ |
| 297 "python", |
| 298 "-u", |
| 299 "[BUILD]\\scripts\\slave\\runtest.py", |
| 300 "--target", |
| 301 "Release", |
| 302 "--no-xvfb", |
| 303 "--factory-properties", |
| 304 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"ClangToTWin\", \"buildnumber\": 571, \"mastername\": \"chromium
.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavename\": \
"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}", |
| 305 "--build-properties", |
| 306 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"ClangToTWin\", \"buildnumber\": 571, \"mastername\": \"chromium
.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavename\": \
"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}", |
| 307 "--annotate=graphing", |
| 308 "--test-type=sizes", |
| 309 "--builder-name=ClangToTWin", |
| 310 "--slave-name=TestSlavename", |
| 311 "--build-number=571", |
| 312 "--run-python-script", |
| 313 "--results-url=https://chromeperf.appspot.com", |
| 314 "--perf-dashboard-id=sizes", |
| 315 "--perf-id=ClangToTWin", |
| 316 "--perf-config={'r_clang_rev': '123456'}", |
| 317 "[BUILD]\\scripts\\slave\\chromium\\sizes.py", |
| 318 "--target", |
| 319 "Release", |
| 320 "--platform", |
| 321 "win" |
| 322 ], |
| 323 "cwd": "[SLAVE_BUILD]", |
| 324 "name": "sizes" |
| 325 }, |
| 326 { |
| 327 "cmd": [ |
| 328 "python", |
| 329 "-u", |
| 330 "[BUILD]\\scripts\\slave\\process_dumps.py", |
| 331 "--target", |
| 332 "Release" |
| 333 ], |
| 334 "cwd": "[SLAVE_BUILD]", |
| 335 "name": "process_dumps" |
171 } | 336 } |
172 ] | 337 ] |
OLD | NEW |