| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", | 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", |
| 7 "--path", | 7 "--path", |
| 8 "[CWD]/swarming.client", | 8 "[SLAVE_BUILD]/swarming.client", |
| 9 "--url", | 9 "--url", |
| 10 "https://chromium.googlesource.com/external/swarming.client.git" | 10 "https://chromium.googlesource.com/external/swarming.client.git" |
| 11 ], | 11 ], |
| 12 "cwd": "[SLAVE_BUILD]", |
| 12 "name": "git setup (swarming_client)" | 13 "name": "git setup (swarming_client)" |
| 13 }, | 14 }, |
| 14 { | 15 { |
| 15 "cmd": [ | 16 "cmd": [ |
| 16 "git", | 17 "git", |
| 17 "retry", | 18 "retry", |
| 18 "fetch", | 19 "fetch", |
| 19 "origin", | 20 "origin", |
| 20 "[dummy swarming client hash]" | 21 "[dummy swarming client hash]" |
| 21 ], | 22 ], |
| 22 "cwd": "[CWD]/swarming.client", | 23 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 23 "name": "git fetch (swarming_client)" | 24 "name": "git fetch (swarming_client)" |
| 24 }, | 25 }, |
| 25 { | 26 { |
| 26 "cmd": [ | 27 "cmd": [ |
| 27 "git", | 28 "git", |
| 28 "checkout", | 29 "checkout", |
| 29 "-f", | 30 "-f", |
| 30 "FETCH_HEAD" | 31 "FETCH_HEAD" |
| 31 ], | 32 ], |
| 32 "cwd": "[CWD]/swarming.client", | 33 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 33 "name": "git checkout (swarming_client)" | 34 "name": "git checkout (swarming_client)" |
| 34 }, | 35 }, |
| 35 { | 36 { |
| 36 "cmd": [ | 37 "cmd": [ |
| 37 "git", | 38 "git", |
| 38 "rev-parse", | 39 "rev-parse", |
| 39 "HEAD" | 40 "HEAD" |
| 40 ], | 41 ], |
| 41 "cwd": "[CWD]/swarming.client", | 42 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 42 "name": "read revision", | 43 "name": "read revision", |
| 43 "stdout": "/path/to/tmp/", | 44 "stdout": "/path/to/tmp/", |
| 44 "~followup_annotations": [ | 45 "~followup_annotations": [ |
| 45 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" | 46 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
| 46 ] | 47 ] |
| 47 }, | 48 }, |
| 48 { | 49 { |
| 49 "cmd": [ | 50 "cmd": [ |
| 50 "git", | 51 "git", |
| 51 "clean", | 52 "clean", |
| 52 "-f", | 53 "-f", |
| 53 "-d", | 54 "-d", |
| 54 "-x" | 55 "-x" |
| 55 ], | 56 ], |
| 56 "cwd": "[CWD]/swarming.client", | 57 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 57 "name": "git clean (swarming_client)" | 58 "name": "git clean (swarming_client)" |
| 58 }, | 59 }, |
| 59 { | 60 { |
| 60 "cmd": [ | 61 "cmd": [ |
| 61 "git", | 62 "git", |
| 62 "submodule", | 63 "submodule", |
| 63 "sync" | 64 "sync" |
| 64 ], | 65 ], |
| 65 "cwd": "[CWD]/swarming.client", | 66 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 66 "name": "submodule sync (swarming_client)" | 67 "name": "submodule sync (swarming_client)" |
| 67 }, | 68 }, |
| 68 { | 69 { |
| 69 "cmd": [ | 70 "cmd": [ |
| 70 "git", | 71 "git", |
| 71 "submodule", | 72 "submodule", |
| 72 "update", | 73 "update", |
| 73 "--init", | 74 "--init", |
| 74 "--recursive" | 75 "--recursive" |
| 75 ], | 76 ], |
| 76 "cwd": "[CWD]/swarming.client", | 77 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 77 "name": "submodule update (swarming_client)", | 78 "name": "submodule update (swarming_client)", |
| 78 "~followup_annotations": [ | 79 "~followup_annotations": [ |
| 79 "@@@SET_BUILD_PROPERTY@got_revision@\"20123\"@@@" | 80 "@@@SET_BUILD_PROPERTY@got_revision@\"20123\"@@@" |
| 80 ] | 81 ] |
| 81 }, | 82 }, |
| 82 { | 83 { |
| 83 "cmd": [ | 84 "cmd": [ |
| 84 "python", | 85 "python", |
| 85 "-u", | 86 "-u", |
| 86 "[CWD]/swarming.client/swarming.py", | 87 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 87 "--version" | 88 "--version" |
| 88 ], | 89 ], |
| 90 "cwd": "[SLAVE_BUILD]", |
| 89 "name": "swarming.py --version", | 91 "name": "swarming.py --version", |
| 90 "stdout": "/path/to/tmp/", | 92 "stdout": "/path/to/tmp/", |
| 91 "~followup_annotations": [ | 93 "~followup_annotations": [ |
| 92 "@@@STEP_TEXT@0.4.10@@@" | 94 "@@@STEP_TEXT@0.4.10@@@" |
| 93 ] | 95 ] |
| 94 }, | 96 }, |
| 95 { | 97 { |
| 96 "cmd": [ | 98 "cmd": [ |
| 97 "python", | 99 "python", |
| 98 "-u", | 100 "-u", |
| 99 "[CWD]/swarming.client/swarming.py", | 101 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 100 "trigger", | 102 "trigger", |
| 101 "--swarming", | 103 "--swarming", |
| 102 "https://chromium-swarm.appspot.com", | 104 "https://chromium-swarm.appspot.com", |
| 103 "--isolate-server", | 105 "--isolate-server", |
| 104 "https://isolateserver.appspot.com", | 106 "https://isolateserver.appspot.com", |
| 105 "--priority", | 107 "--priority", |
| 106 "25", | 108 "25", |
| 107 "--shards", | 109 "--shards", |
| 108 "4", | 110 "4", |
| 109 "--task-name", | 111 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "--timeout=200", | 166 "--timeout=200", |
| 165 "--random-seed=-1847850043", | 167 "--random-seed=-1847850043", |
| 166 "bot_default", | 168 "bot_default", |
| 167 "--no-snap", | 169 "--no-snap", |
| 168 "--exhaustive-variants", | 170 "--exhaustive-variants", |
| 169 "--rerun-failures-count=2", | 171 "--rerun-failures-count=2", |
| 170 "--swarming", | 172 "--swarming", |
| 171 "--json-test-results", | 173 "--json-test-results", |
| 172 "${ISOLATED_OUTDIR}/output.json" | 174 "${ISOLATED_OUTDIR}/output.json" |
| 173 ], | 175 ], |
| 176 "cwd": "[SLAVE_BUILD]", |
| 174 "name": "[trigger] Check on Ubuntu-12.04", | 177 "name": "[trigger] Check on Ubuntu-12.04", |
| 175 "~followup_annotations": [ | 178 "~followup_annotations": [ |
| 176 "@@@STEP_LOG_LINE@json.output@{@@@", | 179 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 177 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-12.04/[
dummy has/V8 Linux - nosnap - debug/571\", @@@", | 180 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-12.04/[
dummy has/V8 Linux - nosnap - debug/571\", @@@", |
| 178 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 181 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 179 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-12.04/[dummy has/V8 Linux
- nosnap - debug/571:4:0\": {@@@", | 182 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-12.04/[dummy has/V8 Linux
- nosnap - debug/571:4:0\": {@@@", |
| 180 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 183 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 181 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 184 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 182 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 185 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 183 "@@@STEP_LOG_LINE@json.output@ }, @@@", | 186 "@@@STEP_LOG_LINE@json.output@ }, @@@", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 202 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", | 205 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@", |
| 203 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@", | 206 "@@@STEP_LINK@shard #1@https://chromium-swarm.appspot.com/user/task/10100@
@@", |
| 204 "@@@STEP_LINK@shard #2@https://chromium-swarm.appspot.com/user/task/10200@
@@", | 207 "@@@STEP_LINK@shard #2@https://chromium-swarm.appspot.com/user/task/10200@
@@", |
| 205 "@@@STEP_LINK@shard #3@https://chromium-swarm.appspot.com/user/task/10300@
@@" | 208 "@@@STEP_LINK@shard #3@https://chromium-swarm.appspot.com/user/task/10300@
@@" |
| 206 ] | 209 ] |
| 207 }, | 210 }, |
| 208 { | 211 { |
| 209 "cmd": [ | 212 "cmd": [ |
| 210 "python", | 213 "python", |
| 211 "-u", | 214 "-u", |
| 212 "[CWD]/swarming.client/swarming.py", | 215 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 213 "trigger", | 216 "trigger", |
| 214 "--swarming", | 217 "--swarming", |
| 215 "https://chromium-swarm.appspot.com", | 218 "https://chromium-swarm.appspot.com", |
| 216 "--isolate-server", | 219 "--isolate-server", |
| 217 "https://isolateserver.appspot.com", | 220 "https://isolateserver.appspot.com", |
| 218 "--priority", | 221 "--priority", |
| 219 "25", | 222 "25", |
| 220 "--shards", | 223 "--shards", |
| 221 "1", | 224 "1", |
| 222 "--task-name", | 225 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 "--timeout=200", | 280 "--timeout=200", |
| 278 "--random-seed=-1847850043", | 281 "--random-seed=-1847850043", |
| 279 "mozilla", | 282 "mozilla", |
| 280 "--no-snap", | 283 "--no-snap", |
| 281 "--exhaustive-variants", | 284 "--exhaustive-variants", |
| 282 "--rerun-failures-count=2", | 285 "--rerun-failures-count=2", |
| 283 "--swarming", | 286 "--swarming", |
| 284 "--json-test-results", | 287 "--json-test-results", |
| 285 "${ISOLATED_OUTDIR}/output.json" | 288 "${ISOLATED_OUTDIR}/output.json" |
| 286 ], | 289 ], |
| 290 "cwd": "[SLAVE_BUILD]", |
| 287 "name": "[trigger] Mozilla on Ubuntu-12.04", | 291 "name": "[trigger] Mozilla on Ubuntu-12.04", |
| 288 "~followup_annotations": [ | 292 "~followup_annotations": [ |
| 289 "@@@STEP_LOG_LINE@json.output@{@@@", | 293 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 290 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-12.04
/[dummy has/V8 Linux - nosnap - debug/571\", @@@", | 294 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-12.04
/[dummy has/V8 Linux - nosnap - debug/571\", @@@", |
| 291 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 295 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 292 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-12.04/[dummy has/V8 Lin
ux - nosnap - debug/571\": {@@@", | 296 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-12.04/[dummy has/V8 Lin
ux - nosnap - debug/571\": {@@@", |
| 293 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 297 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 294 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 298 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 295 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 299 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 296 "@@@STEP_LOG_LINE@json.output@ }@@@", | 300 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 297 "@@@STEP_LOG_LINE@json.output@ }@@@", | 301 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 298 "@@@STEP_LOG_LINE@json.output@}@@@", | 302 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 299 "@@@STEP_LOG_END@json.output@@@", | 303 "@@@STEP_LOG_END@json.output@@@", |
| 300 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 304 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 301 ] | 305 ] |
| 302 }, | 306 }, |
| 303 { | 307 { |
| 304 "cmd": [ | 308 "cmd": [ |
| 305 "python", | 309 "python", |
| 306 "-u", | 310 "-u", |
| 307 "[CWD]/swarming.client/swarming.py", | 311 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 308 "trigger", | 312 "trigger", |
| 309 "--swarming", | 313 "--swarming", |
| 310 "https://chromium-swarm.appspot.com", | 314 "https://chromium-swarm.appspot.com", |
| 311 "--isolate-server", | 315 "--isolate-server", |
| 312 "https://isolateserver.appspot.com", | 316 "https://isolateserver.appspot.com", |
| 313 "--priority", | 317 "--priority", |
| 314 "25", | 318 "25", |
| 315 "--shards", | 319 "--shards", |
| 316 "1", | 320 "1", |
| 317 "--task-name", | 321 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 "--random-seed=-1847850043", | 377 "--random-seed=-1847850043", |
| 374 "simdjs", | 378 "simdjs", |
| 375 "--download-data", | 379 "--download-data", |
| 376 "--no-snap", | 380 "--no-snap", |
| 377 "--exhaustive-variants", | 381 "--exhaustive-variants", |
| 378 "--rerun-failures-count=2", | 382 "--rerun-failures-count=2", |
| 379 "--swarming", | 383 "--swarming", |
| 380 "--json-test-results", | 384 "--json-test-results", |
| 381 "${ISOLATED_OUTDIR}/output.json" | 385 "${ISOLATED_OUTDIR}/output.json" |
| 382 ], | 386 ], |
| 387 "cwd": "[SLAVE_BUILD]", |
| 383 "name": "[trigger] SimdJs - all on Ubuntu-12.04", | 388 "name": "[trigger] SimdJs - all on Ubuntu-12.04", |
| 384 "~followup_annotations": [ | 389 "~followup_annotations": [ |
| 385 "@@@STEP_LOG_LINE@json.output@{@@@", | 390 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 386 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
12.04/[dummy has/V8 Linux - nosnap - debug/571\", @@@", | 391 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
12.04/[dummy has/V8 Linux - nosnap - debug/571\", @@@", |
| 387 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 392 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 388 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-12.04/[dummy has/V
8 Linux - nosnap - debug/571\": {@@@", | 393 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-12.04/[dummy has/V
8 Linux - nosnap - debug/571\": {@@@", |
| 389 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 394 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 390 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 395 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 391 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 396 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 392 "@@@STEP_LOG_LINE@json.output@ }@@@", | 397 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 393 "@@@STEP_LOG_LINE@json.output@ }@@@", | 398 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 394 "@@@STEP_LOG_LINE@json.output@}@@@", | 399 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 395 "@@@STEP_LOG_END@json.output@@@", | 400 "@@@STEP_LOG_END@json.output@@@", |
| 396 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 401 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 397 ] | 402 ] |
| 398 }, | 403 }, |
| 399 { | 404 { |
| 400 "allow_subannotations": true, | 405 "allow_subannotations": true, |
| 401 "cmd": [ | 406 "cmd": [ |
| 402 "python", | 407 "python", |
| 403 "-u", | 408 "-u", |
| 404 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 409 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 405 "--swarming-client-dir", | 410 "--swarming-client-dir", |
| 406 "[CWD]/swarming.client", | 411 "[SLAVE_BUILD]/swarming.client", |
| 407 "--temp-root-dir", | 412 "--temp-root-dir", |
| 408 "[TMP]", | 413 "[TMP_BASE]", |
| 409 "--merged-test-output", | 414 "--merged-test-output", |
| 410 "/path/to/tmp/json", | 415 "/path/to/tmp/json", |
| 411 "--", | 416 "--", |
| 412 "collect", | 417 "collect", |
| 413 "--swarming", | 418 "--swarming", |
| 414 "https://chromium-swarm.appspot.com", | 419 "https://chromium-swarm.appspot.com", |
| 415 "--decorate", | 420 "--decorate", |
| 416 "--print-status-updates", | 421 "--print-status-updates", |
| 417 "--shards", | 422 "--shards", |
| 418 "4", | 423 "4", |
| 419 "Check/Ubuntu-12.04/[dummy has/V8 Linux - nosnap - debug/571" | 424 "Check/Ubuntu-12.04/[dummy has/V8 Linux - nosnap - debug/571" |
| 420 ], | 425 ], |
| 426 "cwd": "[SLAVE_BUILD]", |
| 421 "name": "Check", | 427 "name": "Check", |
| 422 "~followup_annotations": [ | 428 "~followup_annotations": [ |
| 423 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 429 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 424 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 430 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 425 "@@@STEP_LOG_LINE@durations@@@@", | 431 "@@@STEP_LOG_LINE@durations@@@@", |
| 426 "@@@STEP_LOG_LINE@durations@Details:@@@", | 432 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 427 "@@@STEP_LOG_LINE@durations@@@@", | 433 "@@@STEP_LOG_LINE@durations@@@@", |
| 428 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 434 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 429 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 435 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 430 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 436 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 431 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 437 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 432 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 438 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 433 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 439 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 434 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 440 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 435 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 441 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 436 "@@@STEP_LOG_END@durations@@@" | 442 "@@@STEP_LOG_END@durations@@@" |
| 437 ] | 443 ] |
| 438 }, | 444 }, |
| 439 { | 445 { |
| 440 "allow_subannotations": true, | 446 "allow_subannotations": true, |
| 441 "cmd": [ | 447 "cmd": [ |
| 442 "python", | 448 "python", |
| 443 "-u", | 449 "-u", |
| 444 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 450 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 445 "--swarming-client-dir", | 451 "--swarming-client-dir", |
| 446 "[CWD]/swarming.client", | 452 "[SLAVE_BUILD]/swarming.client", |
| 447 "--temp-root-dir", | 453 "--temp-root-dir", |
| 448 "[TMP]", | 454 "[TMP_BASE]", |
| 449 "--merged-test-output", | 455 "--merged-test-output", |
| 450 "/path/to/tmp/json", | 456 "/path/to/tmp/json", |
| 451 "--", | 457 "--", |
| 452 "collect", | 458 "collect", |
| 453 "--swarming", | 459 "--swarming", |
| 454 "https://chromium-swarm.appspot.com", | 460 "https://chromium-swarm.appspot.com", |
| 455 "--decorate", | 461 "--decorate", |
| 456 "--print-status-updates", | 462 "--print-status-updates", |
| 457 "--shards", | 463 "--shards", |
| 458 "1", | 464 "1", |
| 459 "Mozilla/Ubuntu-12.04/[dummy has/V8 Linux - nosnap - debug/571" | 465 "Mozilla/Ubuntu-12.04/[dummy has/V8 Linux - nosnap - debug/571" |
| 460 ], | 466 ], |
| 467 "cwd": "[SLAVE_BUILD]", |
| 461 "name": "Mozilla", | 468 "name": "Mozilla", |
| 462 "~followup_annotations": [ | 469 "~followup_annotations": [ |
| 463 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 470 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 464 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 471 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 465 "@@@STEP_LOG_LINE@durations@@@@", | 472 "@@@STEP_LOG_LINE@durations@@@@", |
| 466 "@@@STEP_LOG_LINE@durations@Details:@@@", | 473 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 467 "@@@STEP_LOG_LINE@durations@@@@", | 474 "@@@STEP_LOG_LINE@durations@@@@", |
| 468 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 475 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 469 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 476 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 470 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 477 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 471 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 478 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 472 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 479 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 473 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 480 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 474 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 481 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 475 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 482 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 476 "@@@STEP_LOG_END@durations@@@" | 483 "@@@STEP_LOG_END@durations@@@" |
| 477 ] | 484 ] |
| 478 }, | 485 }, |
| 479 { | 486 { |
| 480 "allow_subannotations": true, | 487 "allow_subannotations": true, |
| 481 "cmd": [ | 488 "cmd": [ |
| 482 "python", | 489 "python", |
| 483 "-u", | 490 "-u", |
| 484 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 491 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 485 "--swarming-client-dir", | 492 "--swarming-client-dir", |
| 486 "[CWD]/swarming.client", | 493 "[SLAVE_BUILD]/swarming.client", |
| 487 "--temp-root-dir", | 494 "--temp-root-dir", |
| 488 "[TMP]", | 495 "[TMP_BASE]", |
| 489 "--merged-test-output", | 496 "--merged-test-output", |
| 490 "/path/to/tmp/json", | 497 "/path/to/tmp/json", |
| 491 "--", | 498 "--", |
| 492 "collect", | 499 "collect", |
| 493 "--swarming", | 500 "--swarming", |
| 494 "https://chromium-swarm.appspot.com", | 501 "https://chromium-swarm.appspot.com", |
| 495 "--decorate", | 502 "--decorate", |
| 496 "--print-status-updates", | 503 "--print-status-updates", |
| 497 "--shards", | 504 "--shards", |
| 498 "1", | 505 "1", |
| 499 "SimdJs - all/Ubuntu-12.04/[dummy has/V8 Linux - nosnap - debug/571" | 506 "SimdJs - all/Ubuntu-12.04/[dummy has/V8 Linux - nosnap - debug/571" |
| 500 ], | 507 ], |
| 508 "cwd": "[SLAVE_BUILD]", |
| 501 "name": "SimdJs - all", | 509 "name": "SimdJs - all", |
| 502 "~followup_annotations": [ | 510 "~followup_annotations": [ |
| 503 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 511 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 504 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 512 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 505 "@@@STEP_LOG_LINE@durations@@@@", | 513 "@@@STEP_LOG_LINE@durations@@@@", |
| 506 "@@@STEP_LOG_LINE@durations@Details:@@@", | 514 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 507 "@@@STEP_LOG_LINE@durations@@@@", | 515 "@@@STEP_LOG_LINE@durations@@@@", |
| 508 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 516 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 509 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 517 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 510 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 518 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 511 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 519 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 512 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 520 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 513 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 521 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 514 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 522 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 515 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 523 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 516 "@@@STEP_LOG_END@durations@@@" | 524 "@@@STEP_LOG_END@durations@@@" |
| 517 ] | 525 ] |
| 518 }, | 526 }, |
| 519 { | 527 { |
| 520 "name": "$result", | 528 "name": "$result", |
| 521 "recipe_result": null, | 529 "recipe_result": null, |
| 522 "status_code": 0 | 530 "status_code": 0 |
| 523 } | 531 } |
| 524 ] | 532 ] |
| OLD | NEW |