| 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 "1", | 110 "1", |
| 109 "--task-name", | 111 "--task-name", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 "--buildbot", | 165 "--buildbot", |
| 164 "--timeout=200", | 166 "--timeout=200", |
| 165 "--random-seed=-269941039", | 167 "--random-seed=-269941039", |
| 166 "bot_default", | 168 "bot_default", |
| 167 "--exhaustive-variants", | 169 "--exhaustive-variants", |
| 168 "--rerun-failures-count=2", | 170 "--rerun-failures-count=2", |
| 169 "--swarming", | 171 "--swarming", |
| 170 "--json-test-results", | 172 "--json-test-results", |
| 171 "${ISOLATED_OUTDIR}/output.json" | 173 "${ISOLATED_OUTDIR}/output.json" |
| 172 ], | 174 ], |
| 175 "cwd": "[SLAVE_BUILD]", |
| 173 "name": "[trigger] Check on Ubuntu-14.04", | 176 "name": "[trigger] Check on Ubuntu-14.04", |
| 174 "~followup_annotations": [ | 177 "~followup_annotations": [ |
| 175 "@@@STEP_LOG_LINE@json.output@{@@@", | 178 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 176 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-14.04/[
dummy has/V8 Linux - debug - avx2/571\", @@@", | 179 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-14.04/[
dummy has/V8 Linux - debug - avx2/571\", @@@", |
| 177 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 180 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 178 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-14.04/[dummy has/V8 Linux
- debug - avx2/571\": {@@@", | 181 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-14.04/[dummy has/V8 Linux
- debug - avx2/571\": {@@@", |
| 179 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 182 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 180 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 183 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 181 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 184 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 182 "@@@STEP_LOG_LINE@json.output@ }@@@", | 185 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 183 "@@@STEP_LOG_LINE@json.output@ }@@@", | 186 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 184 "@@@STEP_LOG_LINE@json.output@}@@@", | 187 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 185 "@@@STEP_LOG_END@json.output@@@", | 188 "@@@STEP_LOG_END@json.output@@@", |
| 186 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 189 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 187 ] | 190 ] |
| 188 }, | 191 }, |
| 189 { | 192 { |
| 190 "cmd": [ | 193 "cmd": [ |
| 191 "python", | 194 "python", |
| 192 "-u", | 195 "-u", |
| 193 "[CWD]/swarming.client/swarming.py", | 196 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 194 "trigger", | 197 "trigger", |
| 195 "--swarming", | 198 "--swarming", |
| 196 "https://chromium-swarm.appspot.com", | 199 "https://chromium-swarm.appspot.com", |
| 197 "--isolate-server", | 200 "--isolate-server", |
| 198 "https://isolateserver.appspot.com", | 201 "https://isolateserver.appspot.com", |
| 199 "--priority", | 202 "--priority", |
| 200 "25", | 203 "25", |
| 201 "--shards", | 204 "--shards", |
| 202 "1", | 205 "1", |
| 203 "--task-name", | 206 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 "--timeout=200", | 261 "--timeout=200", |
| 259 "--random-seed=-269941039", | 262 "--random-seed=-269941039", |
| 260 "benchmarks", | 263 "benchmarks", |
| 261 "--download-data", | 264 "--download-data", |
| 262 "--exhaustive-variants", | 265 "--exhaustive-variants", |
| 263 "--rerun-failures-count=2", | 266 "--rerun-failures-count=2", |
| 264 "--swarming", | 267 "--swarming", |
| 265 "--json-test-results", | 268 "--json-test-results", |
| 266 "${ISOLATED_OUTDIR}/output.json" | 269 "${ISOLATED_OUTDIR}/output.json" |
| 267 ], | 270 ], |
| 271 "cwd": "[SLAVE_BUILD]", |
| 268 "name": "[trigger] Benchmarks on Ubuntu-14.04", | 272 "name": "[trigger] Benchmarks on Ubuntu-14.04", |
| 269 "~followup_annotations": [ | 273 "~followup_annotations": [ |
| 270 "@@@STEP_LOG_LINE@json.output@{@@@", | 274 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 271 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Benchmarks/Ubuntu-14
.04/[dummy has/V8 Linux - debug - avx2/571\", @@@", | 275 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Benchmarks/Ubuntu-14
.04/[dummy has/V8 Linux - debug - avx2/571\", @@@", |
| 272 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 276 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 273 "@@@STEP_LOG_LINE@json.output@ \"Benchmarks/Ubuntu-14.04/[dummy has/V8
Linux - debug - avx2/571\": {@@@", | 277 "@@@STEP_LOG_LINE@json.output@ \"Benchmarks/Ubuntu-14.04/[dummy has/V8
Linux - debug - avx2/571\": {@@@", |
| 274 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 278 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 275 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 279 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 276 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 280 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 277 "@@@STEP_LOG_LINE@json.output@ }@@@", | 281 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 278 "@@@STEP_LOG_LINE@json.output@ }@@@", | 282 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 279 "@@@STEP_LOG_LINE@json.output@}@@@", | 283 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 280 "@@@STEP_LOG_END@json.output@@@", | 284 "@@@STEP_LOG_END@json.output@@@", |
| 281 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 285 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 282 ] | 286 ] |
| 283 }, | 287 }, |
| 284 { | 288 { |
| 285 "cmd": [ | 289 "cmd": [ |
| 286 "python", | 290 "python", |
| 287 "-u", | 291 "-u", |
| 288 "[CWD]/swarming.client/swarming.py", | 292 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 289 "trigger", | 293 "trigger", |
| 290 "--swarming", | 294 "--swarming", |
| 291 "https://chromium-swarm.appspot.com", | 295 "https://chromium-swarm.appspot.com", |
| 292 "--isolate-server", | 296 "--isolate-server", |
| 293 "https://isolateserver.appspot.com", | 297 "https://isolateserver.appspot.com", |
| 294 "--priority", | 298 "--priority", |
| 295 "25", | 299 "25", |
| 296 "--shards", | 300 "--shards", |
| 297 "1", | 301 "1", |
| 298 "--task-name", | 302 "--task-name", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 "--buildbot", | 356 "--buildbot", |
| 353 "--timeout=200", | 357 "--timeout=200", |
| 354 "--random-seed=-269941039", | 358 "--random-seed=-269941039", |
| 355 "mozilla", | 359 "mozilla", |
| 356 "--exhaustive-variants", | 360 "--exhaustive-variants", |
| 357 "--rerun-failures-count=2", | 361 "--rerun-failures-count=2", |
| 358 "--swarming", | 362 "--swarming", |
| 359 "--json-test-results", | 363 "--json-test-results", |
| 360 "${ISOLATED_OUTDIR}/output.json" | 364 "${ISOLATED_OUTDIR}/output.json" |
| 361 ], | 365 ], |
| 366 "cwd": "[SLAVE_BUILD]", |
| 362 "name": "[trigger] Mozilla on Ubuntu-14.04", | 367 "name": "[trigger] Mozilla on Ubuntu-14.04", |
| 363 "~followup_annotations": [ | 368 "~followup_annotations": [ |
| 364 "@@@STEP_LOG_LINE@json.output@{@@@", | 369 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 365 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-14.04
/[dummy has/V8 Linux - debug - avx2/571\", @@@", | 370 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Mozilla/Ubuntu-14.04
/[dummy has/V8 Linux - debug - avx2/571\", @@@", |
| 366 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 371 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 367 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-14.04/[dummy has/V8 Lin
ux - debug - avx2/571\": {@@@", | 372 "@@@STEP_LOG_LINE@json.output@ \"Mozilla/Ubuntu-14.04/[dummy has/V8 Lin
ux - debug - avx2/571\": {@@@", |
| 368 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 373 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 369 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 374 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 370 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 375 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 371 "@@@STEP_LOG_LINE@json.output@ }@@@", | 376 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 372 "@@@STEP_LOG_LINE@json.output@ }@@@", | 377 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 373 "@@@STEP_LOG_LINE@json.output@}@@@", | 378 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 374 "@@@STEP_LOG_END@json.output@@@", | 379 "@@@STEP_LOG_END@json.output@@@", |
| 375 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 380 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 376 ] | 381 ] |
| 377 }, | 382 }, |
| 378 { | 383 { |
| 379 "cmd": [ | 384 "cmd": [ |
| 380 "python", | 385 "python", |
| 381 "-u", | 386 "-u", |
| 382 "[CWD]/swarming.client/swarming.py", | 387 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 383 "trigger", | 388 "trigger", |
| 384 "--swarming", | 389 "--swarming", |
| 385 "https://chromium-swarm.appspot.com", | 390 "https://chromium-swarm.appspot.com", |
| 386 "--isolate-server", | 391 "--isolate-server", |
| 387 "https://isolateserver.appspot.com", | 392 "https://isolateserver.appspot.com", |
| 388 "--priority", | 393 "--priority", |
| 389 "25", | 394 "25", |
| 390 "--shards", | 395 "--shards", |
| 391 "1", | 396 "1", |
| 392 "--task-name", | 397 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "--timeout=200", | 452 "--timeout=200", |
| 448 "--random-seed=-269941039", | 453 "--random-seed=-269941039", |
| 449 "simdjs", | 454 "simdjs", |
| 450 "--download-data", | 455 "--download-data", |
| 451 "--exhaustive-variants", | 456 "--exhaustive-variants", |
| 452 "--rerun-failures-count=2", | 457 "--rerun-failures-count=2", |
| 453 "--swarming", | 458 "--swarming", |
| 454 "--json-test-results", | 459 "--json-test-results", |
| 455 "${ISOLATED_OUTDIR}/output.json" | 460 "${ISOLATED_OUTDIR}/output.json" |
| 456 ], | 461 ], |
| 462 "cwd": "[SLAVE_BUILD]", |
| 457 "name": "[trigger] SimdJs - all on Ubuntu-14.04", | 463 "name": "[trigger] SimdJs - all on Ubuntu-14.04", |
| 458 "~followup_annotations": [ | 464 "~followup_annotations": [ |
| 459 "@@@STEP_LOG_LINE@json.output@{@@@", | 465 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 460 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
14.04/[dummy has/V8 Linux - debug - avx2/571\", @@@", | 466 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
14.04/[dummy has/V8 Linux - debug - avx2/571\", @@@", |
| 461 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 467 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 462 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-14.04/[dummy has/V
8 Linux - debug - avx2/571\": {@@@", | 468 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-14.04/[dummy has/V
8 Linux - debug - avx2/571\": {@@@", |
| 463 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 469 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 464 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 470 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 465 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 471 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 466 "@@@STEP_LOG_LINE@json.output@ }@@@", | 472 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 467 "@@@STEP_LOG_LINE@json.output@ }@@@", | 473 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 468 "@@@STEP_LOG_LINE@json.output@}@@@", | 474 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 469 "@@@STEP_LOG_END@json.output@@@", | 475 "@@@STEP_LOG_END@json.output@@@", |
| 470 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 476 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 471 ] | 477 ] |
| 472 }, | 478 }, |
| 473 { | 479 { |
| 474 "allow_subannotations": true, | 480 "allow_subannotations": true, |
| 475 "cmd": [ | 481 "cmd": [ |
| 476 "python", | 482 "python", |
| 477 "-u", | 483 "-u", |
| 478 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 484 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 479 "--swarming-client-dir", | 485 "--swarming-client-dir", |
| 480 "[CWD]/swarming.client", | 486 "[SLAVE_BUILD]/swarming.client", |
| 481 "--temp-root-dir", | 487 "--temp-root-dir", |
| 482 "[TMP]", | 488 "[TMP_BASE]", |
| 483 "--merged-test-output", | 489 "--merged-test-output", |
| 484 "/path/to/tmp/json", | 490 "/path/to/tmp/json", |
| 485 "--", | 491 "--", |
| 486 "collect", | 492 "collect", |
| 487 "--swarming", | 493 "--swarming", |
| 488 "https://chromium-swarm.appspot.com", | 494 "https://chromium-swarm.appspot.com", |
| 489 "--decorate", | 495 "--decorate", |
| 490 "--print-status-updates", | 496 "--print-status-updates", |
| 491 "--shards", | 497 "--shards", |
| 492 "1", | 498 "1", |
| 493 "Check/Ubuntu-14.04/[dummy has/V8 Linux - debug - avx2/571" | 499 "Check/Ubuntu-14.04/[dummy has/V8 Linux - debug - avx2/571" |
| 494 ], | 500 ], |
| 501 "cwd": "[SLAVE_BUILD]", |
| 495 "name": "Check", | 502 "name": "Check", |
| 496 "~followup_annotations": [ | 503 "~followup_annotations": [ |
| 497 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 504 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 498 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 505 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 499 "@@@STEP_LOG_LINE@durations@@@@", | 506 "@@@STEP_LOG_LINE@durations@@@@", |
| 500 "@@@STEP_LOG_LINE@durations@Details:@@@", | 507 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 501 "@@@STEP_LOG_LINE@durations@@@@", | 508 "@@@STEP_LOG_LINE@durations@@@@", |
| 502 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 509 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 503 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 510 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 504 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 511 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 505 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 512 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 506 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 513 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 507 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 514 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 508 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 515 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 509 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 516 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 510 "@@@STEP_LOG_END@durations@@@" | 517 "@@@STEP_LOG_END@durations@@@" |
| 511 ] | 518 ] |
| 512 }, | 519 }, |
| 513 { | 520 { |
| 514 "allow_subannotations": true, | 521 "allow_subannotations": true, |
| 515 "cmd": [ | 522 "cmd": [ |
| 516 "python", | 523 "python", |
| 517 "-u", | 524 "-u", |
| 518 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 525 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 519 "--swarming-client-dir", | 526 "--swarming-client-dir", |
| 520 "[CWD]/swarming.client", | 527 "[SLAVE_BUILD]/swarming.client", |
| 521 "--temp-root-dir", | 528 "--temp-root-dir", |
| 522 "[TMP]", | 529 "[TMP_BASE]", |
| 523 "--merged-test-output", | 530 "--merged-test-output", |
| 524 "/path/to/tmp/json", | 531 "/path/to/tmp/json", |
| 525 "--", | 532 "--", |
| 526 "collect", | 533 "collect", |
| 527 "--swarming", | 534 "--swarming", |
| 528 "https://chromium-swarm.appspot.com", | 535 "https://chromium-swarm.appspot.com", |
| 529 "--decorate", | 536 "--decorate", |
| 530 "--print-status-updates", | 537 "--print-status-updates", |
| 531 "--shards", | 538 "--shards", |
| 532 "1", | 539 "1", |
| 533 "Benchmarks/Ubuntu-14.04/[dummy has/V8 Linux - debug - avx2/571" | 540 "Benchmarks/Ubuntu-14.04/[dummy has/V8 Linux - debug - avx2/571" |
| 534 ], | 541 ], |
| 542 "cwd": "[SLAVE_BUILD]", |
| 535 "name": "Benchmarks", | 543 "name": "Benchmarks", |
| 536 "~followup_annotations": [ | 544 "~followup_annotations": [ |
| 537 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 545 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 538 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 546 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 539 "@@@STEP_LOG_LINE@durations@@@@", | 547 "@@@STEP_LOG_LINE@durations@@@@", |
| 540 "@@@STEP_LOG_LINE@durations@Details:@@@", | 548 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 541 "@@@STEP_LOG_LINE@durations@@@@", | 549 "@@@STEP_LOG_LINE@durations@@@@", |
| 542 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 550 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 543 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 551 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 544 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 552 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 545 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 553 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 546 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 554 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 547 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 555 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 548 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 556 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 549 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 557 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 550 "@@@STEP_LOG_END@durations@@@" | 558 "@@@STEP_LOG_END@durations@@@" |
| 551 ] | 559 ] |
| 552 }, | 560 }, |
| 553 { | 561 { |
| 554 "allow_subannotations": true, | 562 "allow_subannotations": true, |
| 555 "cmd": [ | 563 "cmd": [ |
| 556 "python", | 564 "python", |
| 557 "-u", | 565 "-u", |
| 558 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 566 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 559 "--swarming-client-dir", | 567 "--swarming-client-dir", |
| 560 "[CWD]/swarming.client", | 568 "[SLAVE_BUILD]/swarming.client", |
| 561 "--temp-root-dir", | 569 "--temp-root-dir", |
| 562 "[TMP]", | 570 "[TMP_BASE]", |
| 563 "--merged-test-output", | 571 "--merged-test-output", |
| 564 "/path/to/tmp/json", | 572 "/path/to/tmp/json", |
| 565 "--", | 573 "--", |
| 566 "collect", | 574 "collect", |
| 567 "--swarming", | 575 "--swarming", |
| 568 "https://chromium-swarm.appspot.com", | 576 "https://chromium-swarm.appspot.com", |
| 569 "--decorate", | 577 "--decorate", |
| 570 "--print-status-updates", | 578 "--print-status-updates", |
| 571 "--shards", | 579 "--shards", |
| 572 "1", | 580 "1", |
| 573 "Mozilla/Ubuntu-14.04/[dummy has/V8 Linux - debug - avx2/571" | 581 "Mozilla/Ubuntu-14.04/[dummy has/V8 Linux - debug - avx2/571" |
| 574 ], | 582 ], |
| 583 "cwd": "[SLAVE_BUILD]", |
| 575 "name": "Mozilla", | 584 "name": "Mozilla", |
| 576 "~followup_annotations": [ | 585 "~followup_annotations": [ |
| 577 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 586 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 578 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 587 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 579 "@@@STEP_LOG_LINE@durations@@@@", | 588 "@@@STEP_LOG_LINE@durations@@@@", |
| 580 "@@@STEP_LOG_LINE@durations@Details:@@@", | 589 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 581 "@@@STEP_LOG_LINE@durations@@@@", | 590 "@@@STEP_LOG_LINE@durations@@@@", |
| 582 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 591 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 583 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 592 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 584 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 593 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 585 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 594 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 586 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 595 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 587 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 596 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 588 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 597 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 589 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 598 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 590 "@@@STEP_LOG_END@durations@@@" | 599 "@@@STEP_LOG_END@durations@@@" |
| 591 ] | 600 ] |
| 592 }, | 601 }, |
| 593 { | 602 { |
| 594 "allow_subannotations": true, | 603 "allow_subannotations": true, |
| 595 "cmd": [ | 604 "cmd": [ |
| 596 "python", | 605 "python", |
| 597 "-u", | 606 "-u", |
| 598 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 607 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 599 "--swarming-client-dir", | 608 "--swarming-client-dir", |
| 600 "[CWD]/swarming.client", | 609 "[SLAVE_BUILD]/swarming.client", |
| 601 "--temp-root-dir", | 610 "--temp-root-dir", |
| 602 "[TMP]", | 611 "[TMP_BASE]", |
| 603 "--merged-test-output", | 612 "--merged-test-output", |
| 604 "/path/to/tmp/json", | 613 "/path/to/tmp/json", |
| 605 "--", | 614 "--", |
| 606 "collect", | 615 "collect", |
| 607 "--swarming", | 616 "--swarming", |
| 608 "https://chromium-swarm.appspot.com", | 617 "https://chromium-swarm.appspot.com", |
| 609 "--decorate", | 618 "--decorate", |
| 610 "--print-status-updates", | 619 "--print-status-updates", |
| 611 "--shards", | 620 "--shards", |
| 612 "1", | 621 "1", |
| 613 "SimdJs - all/Ubuntu-14.04/[dummy has/V8 Linux - debug - avx2/571" | 622 "SimdJs - all/Ubuntu-14.04/[dummy has/V8 Linux - debug - avx2/571" |
| 614 ], | 623 ], |
| 624 "cwd": "[SLAVE_BUILD]", |
| 615 "name": "SimdJs - all", | 625 "name": "SimdJs - all", |
| 616 "~followup_annotations": [ | 626 "~followup_annotations": [ |
| 617 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 627 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 618 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 628 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 619 "@@@STEP_LOG_LINE@durations@@@@", | 629 "@@@STEP_LOG_LINE@durations@@@@", |
| 620 "@@@STEP_LOG_LINE@durations@Details:@@@", | 630 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 621 "@@@STEP_LOG_LINE@durations@@@@", | 631 "@@@STEP_LOG_LINE@durations@@@@", |
| 622 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 632 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 623 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 633 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 624 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 634 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 625 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 635 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 626 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 636 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 627 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 637 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 628 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 638 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 629 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 639 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 630 "@@@STEP_LOG_END@durations@@@" | 640 "@@@STEP_LOG_END@durations@@@" |
| 631 ] | 641 ] |
| 632 }, | 642 }, |
| 633 { | 643 { |
| 634 "name": "$result", | 644 "name": "$result", |
| 635 "recipe_result": null, | 645 "recipe_result": null, |
| 636 "status_code": 0 | 646 "status_code": 0 |
| 637 } | 647 } |
| 638 ] | 648 ] |
| OLD | NEW |