| 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=597658648", | 167 "--random-seed=597658648", |
| 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 Arm/571\", @@@", | 179 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Check/Ubuntu-14.04/[
dummy has/V8 Arm/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 Arm/5
71\": {@@@", | 181 "@@@STEP_LOG_LINE@json.output@ \"Check/Ubuntu-14.04/[dummy has/V8 Arm/5
71\": {@@@", |
| 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=597658648", | 262 "--random-seed=597658648", |
| 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 Arm/571\", @@@", | 275 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Benchmarks/Ubuntu-14
.04/[dummy has/V8 Arm/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
Arm/571\": {@@@", | 277 "@@@STEP_LOG_LINE@json.output@ \"Benchmarks/Ubuntu-14.04/[dummy has/V8
Arm/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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 "--timeout=200", | 357 "--timeout=200", |
| 354 "--random-seed=597658648", | 358 "--random-seed=597658648", |
| 355 "optimize_for_size", | 359 "optimize_for_size", |
| 356 "--extra-flags=--optimize-for-size", | 360 "--extra-flags=--optimize-for-size", |
| 357 "--variants=default", | 361 "--variants=default", |
| 358 "--rerun-failures-count=2", | 362 "--rerun-failures-count=2", |
| 359 "--swarming", | 363 "--swarming", |
| 360 "--json-test-results", | 364 "--json-test-results", |
| 361 "${ISOLATED_OUTDIR}/output.json" | 365 "${ISOLATED_OUTDIR}/output.json" |
| 362 ], | 366 ], |
| 367 "cwd": "[SLAVE_BUILD]", |
| 363 "name": "[trigger] OptimizeForSize on Ubuntu-14.04", | 368 "name": "[trigger] OptimizeForSize on Ubuntu-14.04", |
| 364 "~followup_annotations": [ | 369 "~followup_annotations": [ |
| 365 "@@@STEP_LOG_LINE@json.output@{@@@", | 370 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 366 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"OptimizeForSize/Ubun
tu-14.04/[dummy has/V8 Arm/571\", @@@", | 371 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"OptimizeForSize/Ubun
tu-14.04/[dummy has/V8 Arm/571\", @@@", |
| 367 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 372 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 368 "@@@STEP_LOG_LINE@json.output@ \"OptimizeForSize/Ubuntu-14.04/[dummy ha
s/V8 Arm/571\": {@@@", | 373 "@@@STEP_LOG_LINE@json.output@ \"OptimizeForSize/Ubuntu-14.04/[dummy ha
s/V8 Arm/571\": {@@@", |
| 369 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 374 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 370 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 375 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 371 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 376 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 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_LINE@json.output@}@@@", | 379 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 375 "@@@STEP_LOG_END@json.output@@@", | 380 "@@@STEP_LOG_END@json.output@@@", |
| 376 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 381 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 377 ] | 382 ] |
| 378 }, | 383 }, |
| 379 { | 384 { |
| 380 "cmd": [ | 385 "cmd": [ |
| 381 "python", | 386 "python", |
| 382 "-u", | 387 "-u", |
| 383 "[CWD]/swarming.client/swarming.py", | 388 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 384 "trigger", | 389 "trigger", |
| 385 "--swarming", | 390 "--swarming", |
| 386 "https://chromium-swarm.appspot.com", | 391 "https://chromium-swarm.appspot.com", |
| 387 "--isolate-server", | 392 "--isolate-server", |
| 388 "https://isolateserver.appspot.com", | 393 "https://isolateserver.appspot.com", |
| 389 "--priority", | 394 "--priority", |
| 390 "25", | 395 "25", |
| 391 "--shards", | 396 "--shards", |
| 392 "1", | 397 "1", |
| 393 "--task-name", | 398 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 "--timeout=200", | 453 "--timeout=200", |
| 449 "--random-seed=597658648", | 454 "--random-seed=597658648", |
| 450 "simdjs", | 455 "simdjs", |
| 451 "--download-data", | 456 "--download-data", |
| 452 "--exhaustive-variants", | 457 "--exhaustive-variants", |
| 453 "--rerun-failures-count=2", | 458 "--rerun-failures-count=2", |
| 454 "--swarming", | 459 "--swarming", |
| 455 "--json-test-results", | 460 "--json-test-results", |
| 456 "${ISOLATED_OUTDIR}/output.json" | 461 "${ISOLATED_OUTDIR}/output.json" |
| 457 ], | 462 ], |
| 463 "cwd": "[SLAVE_BUILD]", |
| 458 "name": "[trigger] SimdJs - all on Ubuntu-14.04", | 464 "name": "[trigger] SimdJs - all on Ubuntu-14.04", |
| 459 "~followup_annotations": [ | 465 "~followup_annotations": [ |
| 460 "@@@STEP_LOG_LINE@json.output@{@@@", | 466 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 461 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
14.04/[dummy has/V8 Arm/571\", @@@", | 467 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"SimdJs - all/Ubuntu-
14.04/[dummy has/V8 Arm/571\", @@@", |
| 462 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 468 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 463 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-14.04/[dummy has/V
8 Arm/571\": {@@@", | 469 "@@@STEP_LOG_LINE@json.output@ \"SimdJs - all/Ubuntu-14.04/[dummy has/V
8 Arm/571\": {@@@", |
| 464 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 470 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 465 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 471 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 466 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 472 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 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_LINE@json.output@}@@@", | 475 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 470 "@@@STEP_LOG_END@json.output@@@", | 476 "@@@STEP_LOG_END@json.output@@@", |
| 471 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 477 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 472 ] | 478 ] |
| 473 }, | 479 }, |
| 474 { | 480 { |
| 475 "cmd": [ | 481 "cmd": [ |
| 476 "python", | 482 "python", |
| 477 "-u", | 483 "-u", |
| 478 "[CWD]/swarming.client/swarming.py", | 484 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 479 "trigger", | 485 "trigger", |
| 480 "--swarming", | 486 "--swarming", |
| 481 "https://chromium-swarm.appspot.com", | 487 "https://chromium-swarm.appspot.com", |
| 482 "--isolate-server", | 488 "--isolate-server", |
| 483 "https://isolateserver.appspot.com", | 489 "https://isolateserver.appspot.com", |
| 484 "--priority", | 490 "--priority", |
| 485 "25", | 491 "25", |
| 486 "--shards", | 492 "--shards", |
| 487 "1", | 493 "1", |
| 488 "--task-name", | 494 "--task-name", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 543 "--timeout=200", | 549 "--timeout=200", |
| 544 "--random-seed=597658648", | 550 "--random-seed=597658648", |
| 545 "ignition", | 551 "ignition", |
| 546 "--ignition-turbofan", | 552 "--ignition-turbofan", |
| 547 "--variants=ignition_turbofan", | 553 "--variants=ignition_turbofan", |
| 548 "--rerun-failures-count=2", | 554 "--rerun-failures-count=2", |
| 549 "--swarming", | 555 "--swarming", |
| 550 "--json-test-results", | 556 "--json-test-results", |
| 551 "${ISOLATED_OUTDIR}/output.json" | 557 "${ISOLATED_OUTDIR}/output.json" |
| 552 ], | 558 ], |
| 559 "cwd": "[SLAVE_BUILD]", |
| 553 "name": "[trigger] Ignition - turbofan on Ubuntu-14.04", | 560 "name": "[trigger] Ignition - turbofan on Ubuntu-14.04", |
| 554 "~followup_annotations": [ | 561 "~followup_annotations": [ |
| 555 "@@@STEP_LOG_LINE@json.output@{@@@", | 562 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 556 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Ignition - turbofan/
Ubuntu-14.04/[dummy has/V8 Arm/571\", @@@", | 563 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Ignition - turbofan/
Ubuntu-14.04/[dummy has/V8 Arm/571\", @@@", |
| 557 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 564 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 558 "@@@STEP_LOG_LINE@json.output@ \"Ignition - turbofan/Ubuntu-14.04/[dumm
y has/V8 Arm/571\": {@@@", | 565 "@@@STEP_LOG_LINE@json.output@ \"Ignition - turbofan/Ubuntu-14.04/[dumm
y has/V8 Arm/571\": {@@@", |
| 559 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 566 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 560 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 567 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 561 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 568 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 562 "@@@STEP_LOG_LINE@json.output@ }@@@", | 569 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 563 "@@@STEP_LOG_LINE@json.output@ }@@@", | 570 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 564 "@@@STEP_LOG_LINE@json.output@}@@@", | 571 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 565 "@@@STEP_LOG_END@json.output@@@", | 572 "@@@STEP_LOG_END@json.output@@@", |
| 566 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 573 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 567 ] | 574 ] |
| 568 }, | 575 }, |
| 569 { | 576 { |
| 570 "cmd": [ | 577 "cmd": [ |
| 571 "python", | 578 "python", |
| 572 "-u", | 579 "-u", |
| 573 "[CWD]/swarming.client/swarming.py", | 580 "[SLAVE_BUILD]/swarming.client/swarming.py", |
| 574 "trigger", | 581 "trigger", |
| 575 "--swarming", | 582 "--swarming", |
| 576 "https://chromium-swarm.appspot.com", | 583 "https://chromium-swarm.appspot.com", |
| 577 "--isolate-server", | 584 "--isolate-server", |
| 578 "https://isolateserver.appspot.com", | 585 "https://isolateserver.appspot.com", |
| 579 "--priority", | 586 "--priority", |
| 580 "25", | 587 "25", |
| 581 "--shards", | 588 "--shards", |
| 582 "1", | 589 "1", |
| 583 "--task-name", | 590 "--task-name", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 "--random-seed=597658648", | 646 "--random-seed=597658648", |
| 640 "test262", | 647 "test262", |
| 641 "--ignition-turbofan", | 648 "--ignition-turbofan", |
| 642 "--download-data", | 649 "--download-data", |
| 643 "--variants=ignition_turbofan", | 650 "--variants=ignition_turbofan", |
| 644 "--rerun-failures-count=2", | 651 "--rerun-failures-count=2", |
| 645 "--swarming", | 652 "--swarming", |
| 646 "--json-test-results", | 653 "--json-test-results", |
| 647 "${ISOLATED_OUTDIR}/output.json" | 654 "${ISOLATED_OUTDIR}/output.json" |
| 648 ], | 655 ], |
| 656 "cwd": "[SLAVE_BUILD]", |
| 649 "name": "[trigger] Test262 - ignition - turbofan on Ubuntu-14.04", | 657 "name": "[trigger] Test262 - ignition - turbofan on Ubuntu-14.04", |
| 650 "~followup_annotations": [ | 658 "~followup_annotations": [ |
| 651 "@@@STEP_LOG_LINE@json.output@{@@@", | 659 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 652 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - ignition -
turbofan/Ubuntu-14.04/[dummy has/V8 Arm/571\", @@@", | 660 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"Test262 - ignition -
turbofan/Ubuntu-14.04/[dummy has/V8 Arm/571\", @@@", |
| 653 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 661 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
| 654 "@@@STEP_LOG_LINE@json.output@ \"Test262 - ignition - turbofan/Ubuntu-1
4.04/[dummy has/V8 Arm/571\": {@@@", | 662 "@@@STEP_LOG_LINE@json.output@ \"Test262 - ignition - turbofan/Ubuntu-1
4.04/[dummy has/V8 Arm/571\": {@@@", |
| 655 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 663 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
| 656 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 664 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
| 657 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 665 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
| 658 "@@@STEP_LOG_LINE@json.output@ }@@@", | 666 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 659 "@@@STEP_LOG_LINE@json.output@ }@@@", | 667 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 660 "@@@STEP_LOG_LINE@json.output@}@@@", | 668 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 661 "@@@STEP_LOG_END@json.output@@@", | 669 "@@@STEP_LOG_END@json.output@@@", |
| 662 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 670 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
| 663 ] | 671 ] |
| 664 }, | 672 }, |
| 665 { | 673 { |
| 666 "allow_subannotations": true, | 674 "allow_subannotations": true, |
| 667 "cmd": [ | 675 "cmd": [ |
| 668 "python", | 676 "python", |
| 669 "-u", | 677 "-u", |
| 670 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 678 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 671 "--swarming-client-dir", | 679 "--swarming-client-dir", |
| 672 "[CWD]/swarming.client", | 680 "[SLAVE_BUILD]/swarming.client", |
| 673 "--temp-root-dir", | 681 "--temp-root-dir", |
| 674 "[TMP]", | 682 "[TMP_BASE]", |
| 675 "--merged-test-output", | 683 "--merged-test-output", |
| 676 "/path/to/tmp/json", | 684 "/path/to/tmp/json", |
| 677 "--", | 685 "--", |
| 678 "collect", | 686 "collect", |
| 679 "--swarming", | 687 "--swarming", |
| 680 "https://chromium-swarm.appspot.com", | 688 "https://chromium-swarm.appspot.com", |
| 681 "--decorate", | 689 "--decorate", |
| 682 "--print-status-updates", | 690 "--print-status-updates", |
| 683 "--shards", | 691 "--shards", |
| 684 "1", | 692 "1", |
| 685 "Check/Ubuntu-14.04/[dummy has/V8 Arm/571" | 693 "Check/Ubuntu-14.04/[dummy has/V8 Arm/571" |
| 686 ], | 694 ], |
| 695 "cwd": "[SLAVE_BUILD]", |
| 687 "name": "Check", | 696 "name": "Check", |
| 688 "~followup_annotations": [ | 697 "~followup_annotations": [ |
| 689 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 698 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 690 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 699 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 691 "@@@STEP_LOG_LINE@durations@@@@", | 700 "@@@STEP_LOG_LINE@durations@@@@", |
| 692 "@@@STEP_LOG_LINE@durations@Details:@@@", | 701 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 693 "@@@STEP_LOG_LINE@durations@@@@", | 702 "@@@STEP_LOG_LINE@durations@@@@", |
| 694 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 703 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 695 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 704 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 696 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 705 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 697 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 706 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 698 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 707 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 699 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 708 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 700 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 709 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 701 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 710 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 702 "@@@STEP_LOG_END@durations@@@" | 711 "@@@STEP_LOG_END@durations@@@" |
| 703 ] | 712 ] |
| 704 }, | 713 }, |
| 705 { | 714 { |
| 706 "allow_subannotations": true, | 715 "allow_subannotations": true, |
| 707 "cmd": [ | 716 "cmd": [ |
| 708 "python", | 717 "python", |
| 709 "-u", | 718 "-u", |
| 710 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 719 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 711 "--swarming-client-dir", | 720 "--swarming-client-dir", |
| 712 "[CWD]/swarming.client", | 721 "[SLAVE_BUILD]/swarming.client", |
| 713 "--temp-root-dir", | 722 "--temp-root-dir", |
| 714 "[TMP]", | 723 "[TMP_BASE]", |
| 715 "--merged-test-output", | 724 "--merged-test-output", |
| 716 "/path/to/tmp/json", | 725 "/path/to/tmp/json", |
| 717 "--", | 726 "--", |
| 718 "collect", | 727 "collect", |
| 719 "--swarming", | 728 "--swarming", |
| 720 "https://chromium-swarm.appspot.com", | 729 "https://chromium-swarm.appspot.com", |
| 721 "--decorate", | 730 "--decorate", |
| 722 "--print-status-updates", | 731 "--print-status-updates", |
| 723 "--shards", | 732 "--shards", |
| 724 "1", | 733 "1", |
| 725 "Benchmarks/Ubuntu-14.04/[dummy has/V8 Arm/571" | 734 "Benchmarks/Ubuntu-14.04/[dummy has/V8 Arm/571" |
| 726 ], | 735 ], |
| 736 "cwd": "[SLAVE_BUILD]", |
| 727 "name": "Benchmarks", | 737 "name": "Benchmarks", |
| 728 "~followup_annotations": [ | 738 "~followup_annotations": [ |
| 729 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 739 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 730 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 740 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 731 "@@@STEP_LOG_LINE@durations@@@@", | 741 "@@@STEP_LOG_LINE@durations@@@@", |
| 732 "@@@STEP_LOG_LINE@durations@Details:@@@", | 742 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 733 "@@@STEP_LOG_LINE@durations@@@@", | 743 "@@@STEP_LOG_LINE@durations@@@@", |
| 734 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 744 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 735 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 745 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 736 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 746 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 737 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 747 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 738 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 748 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 739 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 749 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 740 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 750 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 741 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 751 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 742 "@@@STEP_LOG_END@durations@@@" | 752 "@@@STEP_LOG_END@durations@@@" |
| 743 ] | 753 ] |
| 744 }, | 754 }, |
| 745 { | 755 { |
| 746 "allow_subannotations": true, | 756 "allow_subannotations": true, |
| 747 "cmd": [ | 757 "cmd": [ |
| 748 "python", | 758 "python", |
| 749 "-u", | 759 "-u", |
| 750 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 760 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 751 "--swarming-client-dir", | 761 "--swarming-client-dir", |
| 752 "[CWD]/swarming.client", | 762 "[SLAVE_BUILD]/swarming.client", |
| 753 "--temp-root-dir", | 763 "--temp-root-dir", |
| 754 "[TMP]", | 764 "[TMP_BASE]", |
| 755 "--merged-test-output", | 765 "--merged-test-output", |
| 756 "/path/to/tmp/json", | 766 "/path/to/tmp/json", |
| 757 "--", | 767 "--", |
| 758 "collect", | 768 "collect", |
| 759 "--swarming", | 769 "--swarming", |
| 760 "https://chromium-swarm.appspot.com", | 770 "https://chromium-swarm.appspot.com", |
| 761 "--decorate", | 771 "--decorate", |
| 762 "--print-status-updates", | 772 "--print-status-updates", |
| 763 "--shards", | 773 "--shards", |
| 764 "1", | 774 "1", |
| 765 "OptimizeForSize/Ubuntu-14.04/[dummy has/V8 Arm/571" | 775 "OptimizeForSize/Ubuntu-14.04/[dummy has/V8 Arm/571" |
| 766 ], | 776 ], |
| 777 "cwd": "[SLAVE_BUILD]", |
| 767 "name": "OptimizeForSize", | 778 "name": "OptimizeForSize", |
| 768 "~followup_annotations": [ | 779 "~followup_annotations": [ |
| 769 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 780 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 770 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 781 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 771 "@@@STEP_LOG_LINE@durations@@@@", | 782 "@@@STEP_LOG_LINE@durations@@@@", |
| 772 "@@@STEP_LOG_LINE@durations@Details:@@@", | 783 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 773 "@@@STEP_LOG_LINE@durations@@@@", | 784 "@@@STEP_LOG_LINE@durations@@@@", |
| 774 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 785 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 775 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 786 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 776 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 787 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 777 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 788 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 778 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 789 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 779 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 790 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 780 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 791 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 781 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 792 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 782 "@@@STEP_LOG_END@durations@@@" | 793 "@@@STEP_LOG_END@durations@@@" |
| 783 ] | 794 ] |
| 784 }, | 795 }, |
| 785 { | 796 { |
| 786 "allow_subannotations": true, | 797 "allow_subannotations": true, |
| 787 "cmd": [ | 798 "cmd": [ |
| 788 "python", | 799 "python", |
| 789 "-u", | 800 "-u", |
| 790 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 801 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 791 "--swarming-client-dir", | 802 "--swarming-client-dir", |
| 792 "[CWD]/swarming.client", | 803 "[SLAVE_BUILD]/swarming.client", |
| 793 "--temp-root-dir", | 804 "--temp-root-dir", |
| 794 "[TMP]", | 805 "[TMP_BASE]", |
| 795 "--merged-test-output", | 806 "--merged-test-output", |
| 796 "/path/to/tmp/json", | 807 "/path/to/tmp/json", |
| 797 "--", | 808 "--", |
| 798 "collect", | 809 "collect", |
| 799 "--swarming", | 810 "--swarming", |
| 800 "https://chromium-swarm.appspot.com", | 811 "https://chromium-swarm.appspot.com", |
| 801 "--decorate", | 812 "--decorate", |
| 802 "--print-status-updates", | 813 "--print-status-updates", |
| 803 "--shards", | 814 "--shards", |
| 804 "1", | 815 "1", |
| 805 "SimdJs - all/Ubuntu-14.04/[dummy has/V8 Arm/571" | 816 "SimdJs - all/Ubuntu-14.04/[dummy has/V8 Arm/571" |
| 806 ], | 817 ], |
| 818 "cwd": "[SLAVE_BUILD]", |
| 807 "name": "SimdJs - all", | 819 "name": "SimdJs - all", |
| 808 "~followup_annotations": [ | 820 "~followup_annotations": [ |
| 809 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 821 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 810 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 822 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 811 "@@@STEP_LOG_LINE@durations@@@@", | 823 "@@@STEP_LOG_LINE@durations@@@@", |
| 812 "@@@STEP_LOG_LINE@durations@Details:@@@", | 824 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 813 "@@@STEP_LOG_LINE@durations@@@@", | 825 "@@@STEP_LOG_LINE@durations@@@@", |
| 814 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 826 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 815 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 827 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 816 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 828 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 817 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 829 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 818 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 830 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 819 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 831 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 820 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 832 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 821 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 833 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 822 "@@@STEP_LOG_END@durations@@@" | 834 "@@@STEP_LOG_END@durations@@@" |
| 823 ] | 835 ] |
| 824 }, | 836 }, |
| 825 { | 837 { |
| 826 "allow_subannotations": true, | 838 "allow_subannotations": true, |
| 827 "cmd": [ | 839 "cmd": [ |
| 828 "python", | 840 "python", |
| 829 "-u", | 841 "-u", |
| 830 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 842 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 831 "--swarming-client-dir", | 843 "--swarming-client-dir", |
| 832 "[CWD]/swarming.client", | 844 "[SLAVE_BUILD]/swarming.client", |
| 833 "--temp-root-dir", | 845 "--temp-root-dir", |
| 834 "[TMP]", | 846 "[TMP_BASE]", |
| 835 "--merged-test-output", | 847 "--merged-test-output", |
| 836 "/path/to/tmp/json", | 848 "/path/to/tmp/json", |
| 837 "--", | 849 "--", |
| 838 "collect", | 850 "collect", |
| 839 "--swarming", | 851 "--swarming", |
| 840 "https://chromium-swarm.appspot.com", | 852 "https://chromium-swarm.appspot.com", |
| 841 "--decorate", | 853 "--decorate", |
| 842 "--print-status-updates", | 854 "--print-status-updates", |
| 843 "--shards", | 855 "--shards", |
| 844 "1", | 856 "1", |
| 845 "Ignition - turbofan/Ubuntu-14.04/[dummy has/V8 Arm/571" | 857 "Ignition - turbofan/Ubuntu-14.04/[dummy has/V8 Arm/571" |
| 846 ], | 858 ], |
| 859 "cwd": "[SLAVE_BUILD]", |
| 847 "name": "Ignition - turbofan", | 860 "name": "Ignition - turbofan", |
| 848 "~followup_annotations": [ | 861 "~followup_annotations": [ |
| 849 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 862 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 850 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 863 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 851 "@@@STEP_LOG_LINE@durations@@@@", | 864 "@@@STEP_LOG_LINE@durations@@@@", |
| 852 "@@@STEP_LOG_LINE@durations@Details:@@@", | 865 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 853 "@@@STEP_LOG_LINE@durations@@@@", | 866 "@@@STEP_LOG_LINE@durations@@@@", |
| 854 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 867 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 855 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 868 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 856 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 869 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 857 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 870 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 858 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 871 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 859 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 872 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 860 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 873 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 861 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 874 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 862 "@@@STEP_LOG_END@durations@@@" | 875 "@@@STEP_LOG_END@durations@@@" |
| 863 ] | 876 ] |
| 864 }, | 877 }, |
| 865 { | 878 { |
| 866 "allow_subannotations": true, | 879 "allow_subannotations": true, |
| 867 "cmd": [ | 880 "cmd": [ |
| 868 "python", | 881 "python", |
| 869 "-u", | 882 "-u", |
| 870 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", | 883 "RECIPE_MODULE[build::v8]/resources/collect_v8_task.py", |
| 871 "--swarming-client-dir", | 884 "--swarming-client-dir", |
| 872 "[CWD]/swarming.client", | 885 "[SLAVE_BUILD]/swarming.client", |
| 873 "--temp-root-dir", | 886 "--temp-root-dir", |
| 874 "[TMP]", | 887 "[TMP_BASE]", |
| 875 "--merged-test-output", | 888 "--merged-test-output", |
| 876 "/path/to/tmp/json", | 889 "/path/to/tmp/json", |
| 877 "--", | 890 "--", |
| 878 "collect", | 891 "collect", |
| 879 "--swarming", | 892 "--swarming", |
| 880 "https://chromium-swarm.appspot.com", | 893 "https://chromium-swarm.appspot.com", |
| 881 "--decorate", | 894 "--decorate", |
| 882 "--print-status-updates", | 895 "--print-status-updates", |
| 883 "--shards", | 896 "--shards", |
| 884 "1", | 897 "1", |
| 885 "Test262 - ignition - turbofan/Ubuntu-14.04/[dummy has/V8 Arm/571" | 898 "Test262 - ignition - turbofan/Ubuntu-14.04/[dummy has/V8 Arm/571" |
| 886 ], | 899 ], |
| 900 "cwd": "[SLAVE_BUILD]", |
| 887 "name": "Test262 - ignition - turbofan", | 901 "name": "Test262 - ignition - turbofan", |
| 888 "~followup_annotations": [ | 902 "~followup_annotations": [ |
| 889 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", | 903 "@@@STEP_LOG_LINE@durations@01:01:002 mjsunit/Cool.Test@@@", |
| 890 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", | 904 "@@@STEP_LOG_LINE@durations@00:00:101 mjsunit/Cool.Test2@@@", |
| 891 "@@@STEP_LOG_LINE@durations@@@@", | 905 "@@@STEP_LOG_LINE@durations@@@@", |
| 892 "@@@STEP_LOG_LINE@durations@Details:@@@", | 906 "@@@STEP_LOG_LINE@durations@Details:@@@", |
| 893 "@@@STEP_LOG_LINE@durations@@@@", | 907 "@@@STEP_LOG_LINE@durations@@@@", |
| 894 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", | 908 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test@@@", |
| 895 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", | 909 "@@@STEP_LOG_LINE@durations@Flags: -f@@@", |
| 896 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", | 910 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test@@@", |
| 897 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", | 911 "@@@STEP_LOG_LINE@durations@Duration: 01:01:002@@@", |
| 898 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", | 912 "@@@STEP_LOG_LINE@durations@Test: mjsunit/Cool.Test2@@@", |
| 899 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", | 913 "@@@STEP_LOG_LINE@durations@Flags: -f -g@@@", |
| 900 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", | 914 "@@@STEP_LOG_LINE@durations@Command: d8 -f mjsunit/Cool.Test2@@@", |
| 901 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", | 915 "@@@STEP_LOG_LINE@durations@Duration: 00:00:101@@@", |
| 902 "@@@STEP_LOG_END@durations@@@" | 916 "@@@STEP_LOG_END@durations@@@" |
| 903 ] | 917 ] |
| 904 }, | 918 }, |
| 905 { | 919 { |
| 906 "name": "$result", | 920 "name": "$result", |
| 907 "recipe_result": null, | 921 "recipe_result": null, |
| 908 "status_code": 0 | 922 "status_code": 0 |
| 909 } | 923 } |
| 910 ] | 924 ] |
| OLD | NEW |