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