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