OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "git", | 4 "git", |
5 "remote", | 5 "remote", |
6 "set-url", | 6 "set-url", |
7 "origin", | 7 "origin", |
8 "https://skia.googlesource.com/skia.git" | 8 "https://skia.googlesource.com/skia.git" |
9 ], | 9 ], |
10 "cwd": "[SLAVE_BUILD]/skia", | 10 "cwd": "[SLAVE_BUILD]/skia", |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 318 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
319 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 319 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
320 "@@@STEP_LOG_END@python.inline@@@" | 320 "@@@STEP_LOG_END@python.inline@@@" |
321 ] | 321 ] |
322 }, | 322 }, |
323 { | 323 { |
324 "cmd": [ | 324 "cmd": [ |
325 "python", | 325 "python", |
326 "-u", | 326 "-u", |
327 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 327 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
328 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia
/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE
_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--confi
g-variable\", \n \"OS\", \n \"linux\", \n \"--blacklist\",
\n \".git\", \n \"--blacklist\", \n \"out\", \n \"--
blacklist\", \n \"*.pyc\", \n \"--extra-variable\", \n \"BU
ILDER_NAME\", \n \"Build-Ubuntu-GCC-x86_64-Debug-Swarming\"\n ], \n
\"dir\": \"[SLAVE_BUILD]/skia/infra/bots\", \n \"version\": 1\n}", | 328 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia
/infra/bots/compile_skia.isolate\", \n \"--isolated\", \n \"[SLAVE
_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated\", \n \"--confi
g-variable\", \n \"OS\", \n \"linux\", \n \"--blacklist\",
\n \".git\", \n \"--blacklist\", \n \"out\", \n \"--
blacklist\", \n \"*.pyc\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n
\"version\": 1\n}", |
329 "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json" | 329 "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json" |
330 ], | 330 ], |
331 "cwd": "[SLAVE_BUILD]", | 331 "cwd": "[SLAVE_BUILD]", |
332 "name": "Write compile_skia.isolated.gen.json" | 332 "name": "Write compile_skia.isolated.gen.json" |
333 }, | 333 }, |
334 { | 334 { |
335 "cmd": [ | 335 "cmd": [ |
336 "python", | 336 "python", |
337 "-u", | 337 "-u", |
338 "RECIPE_MODULE[build::isolate]/resources/isolate.py", | 338 "RECIPE_MODULE[build::isolate]/resources/isolate.py", |
(...skipping 13 matching lines...) Expand all Loading... |
352 "@@@STEP_LOG_LINE@json.output@ \"compile_skia\": \"[dummy hash for compil
e_skia]\"@@@", | 352 "@@@STEP_LOG_LINE@json.output@ \"compile_skia\": \"[dummy hash for compil
e_skia]\"@@@", |
353 "@@@STEP_LOG_LINE@json.output@}@@@", | 353 "@@@STEP_LOG_LINE@json.output@}@@@", |
354 "@@@STEP_LOG_END@json.output@@@", | 354 "@@@STEP_LOG_END@json.output@@@", |
355 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"compile_skia\": \"[dummy hash for c
ompile_skia]\"}@@@" | 355 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"compile_skia\": \"[dummy hash for c
ompile_skia]\"}@@@" |
356 ] | 356 ] |
357 }, | 357 }, |
358 { | 358 { |
359 "cmd": [ | 359 "cmd": [ |
360 "python", | 360 "python", |
361 "-u", | 361 "-u", |
| 362 "\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = jso
n.load(f)\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(s
ys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n", |
| 363 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated", |
| 364 "8ba778e47df2a9b46355cf72c58b58fdb1a7f350" |
| 365 ], |
| 366 "cwd": "[SLAVE_BUILD]", |
| 367 "name": "add_isolated_input", |
| 368 "~followup_annotations": [ |
| 369 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 370 "@@@STEP_LOG_LINE@python.inline@import json@@@", |
| 371 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
| 372 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", |
| 373 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", |
| 374 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", |
| 375 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@", |
| 376 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", |
| 377 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@
@", |
| 378 "@@@STEP_LOG_END@python.inline@@@" |
| 379 ] |
| 380 }, |
| 381 { |
| 382 "cmd": [ |
| 383 "python", |
| 384 "-u", |
| 385 "[SLAVE_BUILD]/swarming.client/isolateserver.py", |
| 386 "archive", |
| 387 "--isolate-server", |
| 388 "https://isolateserver.appspot.com", |
| 389 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated" |
| 390 ], |
| 391 "cwd": "[SLAVE_BUILD]", |
| 392 "name": "upload new .isolated file for compile_skia", |
| 393 "stdout": "/path/to/tmp/" |
| 394 }, |
| 395 { |
| 396 "cmd": [ |
| 397 "python", |
| 398 "-u", |
362 "[SLAVE_BUILD]/swarming.client/swarming.py", | 399 "[SLAVE_BUILD]/swarming.client/swarming.py", |
363 "trigger", | 400 "trigger", |
364 "--swarming", | 401 "--swarming", |
365 "https://chromium-swarm.appspot.com", | 402 "https://chromium-swarm.appspot.com", |
366 "--isolate-server", | 403 "--isolate-server", |
367 "https://isolateserver.appspot.com", | 404 "https://isolateserver.appspot.com", |
368 "--priority", | 405 "--priority", |
369 "90", | 406 "90", |
370 "--shards", | 407 "--shards", |
371 "1", | 408 "1", |
372 "--task-name", | 409 "--task-name", |
373 "compile_skia/Ubuntu/[dummy has/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-
Swarming/5", | 410 "compile_skia/Ubuntu/def456/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swar
ming/5", |
374 "--dump-json", | 411 "--dump-json", |
375 "/path/to/tmp/json", | 412 "/path/to/tmp/json", |
376 "--expiration", | 413 "--expiration", |
377 "14400", | 414 "14400", |
378 "--io-timeout", | 415 "--io-timeout", |
379 "1200", | 416 "1200", |
380 "--hard-timeout", | 417 "--hard-timeout", |
381 "3600", | 418 "3600", |
382 "--dimension", | 419 "--dimension", |
383 "gpu", | 420 "gpu", |
384 "none", | 421 "none", |
385 "--dimension", | 422 "--dimension", |
386 "os", | 423 "os", |
387 "Ubuntu", | 424 "Ubuntu", |
388 "--dimension", | 425 "--dimension", |
389 "pool", | 426 "pool", |
390 "Skia", | 427 "Skia", |
391 "--tag", | 428 "--tag", |
392 "buildername:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming", | 429 "buildername:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming", |
393 "--tag", | 430 "--tag", |
394 "buildnumber:5", | 431 "buildnumber:5", |
395 "--tag", | 432 "--tag", |
396 "data:[dummy hash for compile_skia]", | 433 "data:def456", |
397 "--tag", | 434 "--tag", |
398 "master:client.skia.fyi", | 435 "master:client.skia.fyi", |
399 "--tag", | 436 "--tag", |
400 "name:compile_skia", | 437 "name:compile_skia", |
401 "--tag", | 438 "--tag", |
402 "os:Ubuntu", | 439 "os:Ubuntu", |
403 "--tag", | 440 "--tag", |
404 "slavename:skiabot-linux-housekeeper-003", | 441 "slavename:skiabot-linux-housekeeper-003", |
405 "--tag", | 442 "--tag", |
406 "stepname:compile_skia on Ubuntu", | 443 "stepname:compile_skia on Ubuntu", |
407 "--idempotent", | 444 "--idempotent", |
408 "[dummy hash for compile_skia]" | 445 "def456", |
| 446 "--", |
| 447 "cook", |
| 448 "-repository", |
| 449 "https://chromium.googlesource.com/chromium/tools/build", |
| 450 "-revision", |
| 451 "", |
| 452 "-recipe", |
| 453 "skia/swarm_compile", |
| 454 "-properties", |
| 455 "{\"buildername\": \"Build-Ubuntu-GCC-x86_64-Debug-Swarming\", \"masternam
e\": \"client.skia.fyi\", \"buildnumber\": 5, \"slavename\": \"skiabot-linux-hou
sekeeper-003\", \"reason\": \"Triggered by Skia swarm_trigger Recipe\", \"swarm_
out_dir\": \"${ISOLATED_OUTDIR}\", \"revision\": 164710}", |
| 456 "-workdir", |
| 457 "../../.." |
409 ], | 458 ], |
410 "cwd": "[SLAVE_BUILD]", | 459 "cwd": "[SLAVE_BUILD]", |
411 "name": "[trigger] compile_skia on Ubuntu", | 460 "name": "[trigger] compile_skia on Ubuntu", |
412 "~followup_annotations": [ | 461 "~followup_annotations": [ |
413 "@@@STEP_LOG_LINE@json.output@{@@@", | 462 "@@@STEP_LOG_LINE@json.output@{@@@", |
414 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"compile_skia/Ubuntu/
[dummy has/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\", @@@", | 463 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"compile_skia/Ubuntu/
def456/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\", @@@", |
415 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 464 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
416 "@@@STEP_LOG_LINE@json.output@ \"compile_skia/Ubuntu/[dummy has/Test-Ub
untu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\": {@@@", | 465 "@@@STEP_LOG_LINE@json.output@ \"compile_skia/Ubuntu/def456/Test-Ubuntu
-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\": {@@@", |
417 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 466 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
418 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 467 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
419 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", | 468 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm
.appspot.com/user/task/10000\"@@@", |
420 "@@@STEP_LOG_LINE@json.output@ }@@@", | 469 "@@@STEP_LOG_LINE@json.output@ }@@@", |
421 "@@@STEP_LOG_LINE@json.output@ }@@@", | 470 "@@@STEP_LOG_LINE@json.output@ }@@@", |
422 "@@@STEP_LOG_LINE@json.output@}@@@", | 471 "@@@STEP_LOG_LINE@json.output@}@@@", |
423 "@@@STEP_LOG_END@json.output@@@", | 472 "@@@STEP_LOG_END@json.output@@@", |
424 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" | 473 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@
@@" |
425 ] | 474 ] |
426 }, | 475 }, |
427 { | 476 { |
428 "cmd": [ | 477 "cmd": [ |
429 "python", | 478 "python", |
430 "-u", | 479 "-u", |
431 "[SLAVE_BUILD]/swarming.client/swarming.py", | 480 "[SLAVE_BUILD]/swarming.client/swarming.py", |
432 "collect", | 481 "collect", |
433 "--swarming", | 482 "--swarming", |
434 "https://chromium-swarm.appspot.com", | 483 "https://chromium-swarm.appspot.com", |
435 "--decorate", | 484 "--decorate", |
436 "--print-status-updates", | 485 "--print-status-updates", |
437 "--shards", | 486 "--shards", |
438 "1", | 487 "1", |
439 "compile_skia/Ubuntu/[dummy has/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-
Swarming/5", | 488 "compile_skia/Ubuntu/def456/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swar
ming/5", |
440 "--task-summary-json", | 489 "--task-summary-json", |
441 "/path/to/tmp/json" | 490 "/path/to/tmp/json" |
442 ], | 491 ], |
443 "cwd": "[SLAVE_BUILD]", | 492 "cwd": "[SLAVE_BUILD]", |
444 "name": "compile_skia on Ubuntu", | 493 "name": "compile_skia on Ubuntu", |
445 "~followup_annotations": [ | 494 "~followup_annotations": [ |
446 "@@@STEP_TEXT@swarming pending 71s@@@", | 495 "@@@STEP_TEXT@swarming pending 71s@@@", |
447 "@@@STEP_LOG_LINE@json.output@{@@@", | 496 "@@@STEP_LOG_LINE@json.output@{@@@", |
448 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", | 497 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", |
449 "@@@STEP_LOG_LINE@json.output@ {@@@", | 498 "@@@STEP_LOG_LINE@json.output@ {@@@", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 581 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
533 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 582 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
534 "@@@STEP_LOG_END@python.inline@@@" | 583 "@@@STEP_LOG_END@python.inline@@@" |
535 ] | 584 ] |
536 }, | 585 }, |
537 { | 586 { |
538 "cmd": [ | 587 "cmd": [ |
539 "python", | 588 "python", |
540 "-u", | 589 "-u", |
541 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 590 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
542 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia
/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BU
ILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-vari
able\", \n \"OS\", \n \"linux\", \n \"--blacklist\", \n
\".git\", \n \"--extra-variable\", \n \"BUILD_NUMBER\", \n
\"5\", \n \"--extra-variable\", \n \"MASTER_NAME\", \n
\"client.skia.fyi\", \n \"--extra-variable\", \n \"SLAVE_NAME\", \
n \"skiabot-linux-housekeeper-003\", \n \"--extra-variable\", \n
\"BUILDER_NAME\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Sw
arming\", \n \"--extra-variable\", \n \"PATCHSET\", \n \"\"
, \n \"--extra-variable\", \n \"ISSUE\", \n \"\", \n
\"--extra-variable\", \n \"REVISION\", \n 164710\n ], \n \"
dir\": \"[SLAVE_BUILD]/skia/infra/bots\", \n \"version\": 1\n}", | 591 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia
/infra/bots/test_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BU
ILD]/swarming_temp_dir/skia-task-test_skia.isolated\", \n \"--config-vari
able\", \n \"OS\", \n \"linux\", \n \"--blacklist\", \n
\".git\", \n \"--blacklist\", \n \"out\", \n \"--blackl
ist\", \n \"*.pyc\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"ver
sion\": 1\n}", |
543 "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json" | 592 "[SLAVE_BUILD]/swarming_temp_dir/test_skia.isolated.gen.json" |
544 ], | 593 ], |
545 "cwd": "[SLAVE_BUILD]", | 594 "cwd": "[SLAVE_BUILD]", |
546 "name": "Write test_skia.isolated.gen.json" | 595 "name": "Write test_skia.isolated.gen.json" |
547 }, | 596 }, |
548 { | 597 { |
549 "cmd": [ | 598 "cmd": [ |
550 "python", | 599 "python", |
551 "-u", | 600 "-u", |
552 "RECIPE_MODULE[build::isolate]/resources/isolate.py", | 601 "RECIPE_MODULE[build::isolate]/resources/isolate.py", |
(...skipping 13 matching lines...) Expand all Loading... |
566 "@@@STEP_LOG_LINE@json.output@ \"test_skia\": \"[dummy hash for test_skia
]\"@@@", | 615 "@@@STEP_LOG_LINE@json.output@ \"test_skia\": \"[dummy hash for test_skia
]\"@@@", |
567 "@@@STEP_LOG_LINE@json.output@}@@@", | 616 "@@@STEP_LOG_LINE@json.output@}@@@", |
568 "@@@STEP_LOG_END@json.output@@@", | 617 "@@@STEP_LOG_END@json.output@@@", |
569 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"test_skia\": \"[dummy hash for test
_skia]\"}@@@" | 618 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"test_skia\": \"[dummy hash for test
_skia]\"}@@@" |
570 ] | 619 ] |
571 }, | 620 }, |
572 { | 621 { |
573 "cmd": [ | 622 "cmd": [ |
574 "python", | 623 "python", |
575 "-u", | 624 "-u", |
576 "\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = jso
n.load(f)\nfor h in sys.argv[2:]:\n isolated['includes'].append(sys.argv[2])\nw
ith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n", | 625 "\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = jso
n.load(f)\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(s
ys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n", |
577 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated", | 626 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated", |
578 "abc123" | 627 "abc123", |
| 628 "8ba778e47df2a9b46355cf72c58b58fdb1a7f350" |
579 ], | 629 ], |
580 "cwd": "[SLAVE_BUILD]", | 630 "cwd": "[SLAVE_BUILD]", |
581 "name": "add_isolated_input", | 631 "name": "add_isolated_input (2)", |
582 "~followup_annotations": [ | 632 "~followup_annotations": [ |
583 "@@@STEP_LOG_LINE@python.inline@@@@", | 633 "@@@STEP_LOG_LINE@python.inline@@@@", |
584 "@@@STEP_LOG_LINE@python.inline@import json@@@", | 634 "@@@STEP_LOG_LINE@python.inline@import json@@@", |
585 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 635 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
586 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", | 636 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", |
587 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", | 637 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", |
588 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", | 638 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", |
589 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(sys.argv[2])
@@@", | 639 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@", |
590 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", | 640 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", |
591 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@
@", | 641 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@
@", |
592 "@@@STEP_LOG_END@python.inline@@@" | 642 "@@@STEP_LOG_END@python.inline@@@" |
593 ] | 643 ] |
594 }, | 644 }, |
595 { | 645 { |
596 "cmd": [ | 646 "cmd": [ |
597 "python", | 647 "python", |
598 "-u", | 648 "-u", |
599 "[SLAVE_BUILD]/swarming.client/isolateserver.py", | 649 "[SLAVE_BUILD]/swarming.client/isolateserver.py", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 "--tag", | 698 "--tag", |
649 "master:client.skia.fyi", | 699 "master:client.skia.fyi", |
650 "--tag", | 700 "--tag", |
651 "name:test_skia", | 701 "name:test_skia", |
652 "--tag", | 702 "--tag", |
653 "os:Ubuntu", | 703 "os:Ubuntu", |
654 "--tag", | 704 "--tag", |
655 "slavename:skiabot-linux-housekeeper-003", | 705 "slavename:skiabot-linux-housekeeper-003", |
656 "--tag", | 706 "--tag", |
657 "stepname:test_skia on Ubuntu", | 707 "stepname:test_skia on Ubuntu", |
658 "def456" | 708 "def456", |
| 709 "--", |
| 710 "cook", |
| 711 "-repository", |
| 712 "https://chromium.googlesource.com/chromium/tools/build", |
| 713 "-revision", |
| 714 "", |
| 715 "-recipe", |
| 716 "skia/swarm_test", |
| 717 "-properties", |
| 718 "{\"buildername\": \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming\",
\"mastername\": \"client.skia.fyi\", \"buildnumber\": 5, \"slavename\": \"skiab
ot-linux-housekeeper-003\", \"reason\": \"Triggered by Skia swarm_trigger Recipe
\", \"swarm_out_dir\": \"${ISOLATED_OUTDIR}\", \"revision\": 164710}", |
| 719 "-workdir", |
| 720 "../../.." |
659 ], | 721 ], |
660 "cwd": "[SLAVE_BUILD]", | 722 "cwd": "[SLAVE_BUILD]", |
661 "name": "[trigger] test_skia on Ubuntu", | 723 "name": "[trigger] test_skia on Ubuntu", |
662 "~followup_annotations": [ | 724 "~followup_annotations": [ |
663 "@@@STEP_LOG_LINE@json.output@{@@@", | 725 "@@@STEP_LOG_LINE@json.output@{@@@", |
664 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"test_skia/Ubuntu/def
456/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\", @@@", | 726 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"test_skia/Ubuntu/def
456/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\", @@@", |
665 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 727 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
666 "@@@STEP_LOG_LINE@json.output@ \"test_skia/Ubuntu/def456/Test-Ubuntu-GC
C-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\": {@@@", | 728 "@@@STEP_LOG_LINE@json.output@ \"test_skia/Ubuntu/def456/Test-Ubuntu-GC
C-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\": {@@@", |
667 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 729 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
668 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 730 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
(...skipping 26 matching lines...) Expand all Loading... |
695 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", | 757 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", |
696 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", | 758 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", |
697 "@@@STEP_LOG_END@python.inline@@@" | 759 "@@@STEP_LOG_END@python.inline@@@" |
698 ] | 760 ] |
699 }, | 761 }, |
700 { | 762 { |
701 "cmd": [ | 763 "cmd": [ |
702 "python", | 764 "python", |
703 "-u", | 765 "-u", |
704 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", | 766 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", |
705 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia
/infra/bots/perf_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BU
ILD]/swarming_temp_dir/skia-task-perf_skia.isolated\", \n \"--config-vari
able\", \n \"OS\", \n \"linux\", \n \"--blacklist\", \n
\".git\", \n \"--extra-variable\", \n \"BUILD_NUMBER\", \n
\"5\", \n \"--extra-variable\", \n \"MASTER_NAME\", \n
\"client.skia.fyi\", \n \"--extra-variable\", \n \"SLAVE_NAME\", \
n \"skiabot-linux-housekeeper-003\", \n \"--extra-variable\", \n
\"BUILDER_NAME\", \n \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Sw
arming\", \n \"--extra-variable\", \n \"PATCHSET\", \n \"\"
, \n \"--extra-variable\", \n \"ISSUE\", \n \"\", \n
\"--extra-variable\", \n \"REVISION\", \n 164710\n ], \n \"
dir\": \"[SLAVE_BUILD]/skia/infra/bots\", \n \"version\": 1\n}", | 767 "{\n \"args\": [\n \"--isolate\", \n \"[SLAVE_BUILD]/skia
/infra/bots/perf_skia.isolate\", \n \"--isolated\", \n \"[SLAVE_BU
ILD]/swarming_temp_dir/skia-task-perf_skia.isolated\", \n \"--config-vari
able\", \n \"OS\", \n \"linux\", \n \"--blacklist\", \n
\".git\", \n \"--blacklist\", \n \"out\", \n \"--blackl
ist\", \n \"*.pyc\"\n ], \n \"dir\": \"[SLAVE_BUILD]\", \n \"ver
sion\": 1\n}", |
706 "[SLAVE_BUILD]/swarming_temp_dir/perf_skia.isolated.gen.json" | 768 "[SLAVE_BUILD]/swarming_temp_dir/perf_skia.isolated.gen.json" |
707 ], | 769 ], |
708 "cwd": "[SLAVE_BUILD]", | 770 "cwd": "[SLAVE_BUILD]", |
709 "name": "Write perf_skia.isolated.gen.json" | 771 "name": "Write perf_skia.isolated.gen.json" |
710 }, | 772 }, |
711 { | 773 { |
712 "cmd": [ | 774 "cmd": [ |
713 "python", | 775 "python", |
714 "-u", | 776 "-u", |
715 "RECIPE_MODULE[build::isolate]/resources/isolate.py", | 777 "RECIPE_MODULE[build::isolate]/resources/isolate.py", |
(...skipping 13 matching lines...) Expand all Loading... |
729 "@@@STEP_LOG_LINE@json.output@ \"perf_skia\": \"[dummy hash for perf_skia
]\"@@@", | 791 "@@@STEP_LOG_LINE@json.output@ \"perf_skia\": \"[dummy hash for perf_skia
]\"@@@", |
730 "@@@STEP_LOG_LINE@json.output@}@@@", | 792 "@@@STEP_LOG_LINE@json.output@}@@@", |
731 "@@@STEP_LOG_END@json.output@@@", | 793 "@@@STEP_LOG_END@json.output@@@", |
732 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"perf_skia\": \"[dummy hash for perf
_skia]\"}@@@" | 794 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"perf_skia\": \"[dummy hash for perf
_skia]\"}@@@" |
733 ] | 795 ] |
734 }, | 796 }, |
735 { | 797 { |
736 "cmd": [ | 798 "cmd": [ |
737 "python", | 799 "python", |
738 "-u", | 800 "-u", |
739 "\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = jso
n.load(f)\nfor h in sys.argv[2:]:\n isolated['includes'].append(sys.argv[2])\nw
ith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n", | 801 "\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = jso
n.load(f)\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(s
ys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n", |
740 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated", | 802 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated", |
741 "abc123" | 803 "abc123", |
| 804 "8ba778e47df2a9b46355cf72c58b58fdb1a7f350" |
742 ], | 805 ], |
743 "cwd": "[SLAVE_BUILD]", | 806 "cwd": "[SLAVE_BUILD]", |
744 "name": "add_isolated_input (2)", | 807 "name": "add_isolated_input (3)", |
745 "~followup_annotations": [ | 808 "~followup_annotations": [ |
746 "@@@STEP_LOG_LINE@python.inline@@@@", | 809 "@@@STEP_LOG_LINE@python.inline@@@@", |
747 "@@@STEP_LOG_LINE@python.inline@import json@@@", | 810 "@@@STEP_LOG_LINE@python.inline@import json@@@", |
748 "@@@STEP_LOG_LINE@python.inline@import sys@@@", | 811 "@@@STEP_LOG_LINE@python.inline@import sys@@@", |
749 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", | 812 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", |
750 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", | 813 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", |
751 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", | 814 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", |
752 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(sys.argv[2])
@@@", | 815 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@", |
753 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", | 816 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", |
754 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@
@", | 817 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@
@", |
755 "@@@STEP_LOG_END@python.inline@@@" | 818 "@@@STEP_LOG_END@python.inline@@@" |
756 ] | 819 ] |
757 }, | 820 }, |
758 { | 821 { |
759 "cmd": [ | 822 "cmd": [ |
760 "python", | 823 "python", |
761 "-u", | 824 "-u", |
762 "[SLAVE_BUILD]/swarming.client/isolateserver.py", | 825 "[SLAVE_BUILD]/swarming.client/isolateserver.py", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
811 "--tag", | 874 "--tag", |
812 "master:client.skia.fyi", | 875 "master:client.skia.fyi", |
813 "--tag", | 876 "--tag", |
814 "name:perf_skia", | 877 "name:perf_skia", |
815 "--tag", | 878 "--tag", |
816 "os:Ubuntu", | 879 "os:Ubuntu", |
817 "--tag", | 880 "--tag", |
818 "slavename:skiabot-linux-housekeeper-003", | 881 "slavename:skiabot-linux-housekeeper-003", |
819 "--tag", | 882 "--tag", |
820 "stepname:perf_skia on Ubuntu", | 883 "stepname:perf_skia on Ubuntu", |
821 "def456" | 884 "def456", |
| 885 "--", |
| 886 "cook", |
| 887 "-repository", |
| 888 "https://chromium.googlesource.com/chromium/tools/build", |
| 889 "-revision", |
| 890 "", |
| 891 "-recipe", |
| 892 "skia/swarm_perf", |
| 893 "-properties", |
| 894 "{\"buildername\": \"Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming\",
\"mastername\": \"client.skia.fyi\", \"buildnumber\": 5, \"slavename\": \"skiab
ot-linux-housekeeper-003\", \"reason\": \"Triggered by Skia swarm_trigger Recipe
\", \"swarm_out_dir\": \"${ISOLATED_OUTDIR}\", \"revision\": 164710}", |
| 895 "-workdir", |
| 896 "../../.." |
822 ], | 897 ], |
823 "cwd": "[SLAVE_BUILD]", | 898 "cwd": "[SLAVE_BUILD]", |
824 "name": "[trigger] perf_skia on Ubuntu", | 899 "name": "[trigger] perf_skia on Ubuntu", |
825 "~followup_annotations": [ | 900 "~followup_annotations": [ |
826 "@@@STEP_LOG_LINE@json.output@{@@@", | 901 "@@@STEP_LOG_LINE@json.output@{@@@", |
827 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"perf_skia/Ubuntu/def
456/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\", @@@", | 902 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"perf_skia/Ubuntu/def
456/Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\", @@@", |
828 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", | 903 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", |
829 "@@@STEP_LOG_LINE@json.output@ \"perf_skia/Ubuntu/def456/Test-Ubuntu-GC
C-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\": {@@@", | 904 "@@@STEP_LOG_LINE@json.output@ \"perf_skia/Ubuntu/def456/Test-Ubuntu-GC
C-GCE-CPU-AVX2-x86_64-Debug-Swarming/5\": {@@@", |
830 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", | 905 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", |
831 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", | 906 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1053 "@@@STEP_LOG_END@json.output@@@", | 1128 "@@@STEP_LOG_END@json.output@@@", |
1054 "@@@STEP_LINK@shard #0 isolated out@blah@@@" | 1129 "@@@STEP_LINK@shard #0 isolated out@blah@@@" |
1055 ] | 1130 ] |
1056 }, | 1131 }, |
1057 { | 1132 { |
1058 "name": "$result", | 1133 "name": "$result", |
1059 "recipe_result": null, | 1134 "recipe_result": null, |
1060 "status_code": 0 | 1135 "status_code": 0 |
1061 } | 1136 } |
1062 ] | 1137 ] |
OLD | NEW |