Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: scripts/slave/recipes/skia/swarm_trigger.expected/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot.json

Issue 1829423002: Skia: Run recipes as swarming tasks (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@swarm_fix
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 349 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
350 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 350 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
351 "@@@STEP_LOG_END@python.inline@@@" 351 "@@@STEP_LOG_END@python.inline@@@"
352 ] 352 ]
353 }, 353 },
354 { 354 {
355 "cmd": [ 355 "cmd": [
356 "python", 356 "python",
357 "-u", 357 "-u",
358 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 358 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
359 "{\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-Release-Swarming\"\n ], \n \"dir\": \"[SLAVE_BUILD]/skia/infra/bots\", \n \"version\": 1\n}", 359 "{\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}",
360 "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json" 360 "[SLAVE_BUILD]/swarming_temp_dir/compile_skia.isolated.gen.json"
361 ], 361 ],
362 "cwd": "[SLAVE_BUILD]", 362 "cwd": "[SLAVE_BUILD]",
363 "name": "Write compile_skia.isolated.gen.json" 363 "name": "Write compile_skia.isolated.gen.json"
364 }, 364 },
365 { 365 {
366 "cmd": [ 366 "cmd": [
367 "python", 367 "python",
368 "-u", 368 "-u",
369 "RECIPE_MODULE[build::isolate]/resources/isolate.py", 369 "RECIPE_MODULE[build::isolate]/resources/isolate.py",
(...skipping 13 matching lines...) Expand all
383 "@@@STEP_LOG_LINE@json.output@ \"compile_skia\": \"[dummy hash for compil e_skia]\"@@@", 383 "@@@STEP_LOG_LINE@json.output@ \"compile_skia\": \"[dummy hash for compil e_skia]\"@@@",
384 "@@@STEP_LOG_LINE@json.output@}@@@", 384 "@@@STEP_LOG_LINE@json.output@}@@@",
385 "@@@STEP_LOG_END@json.output@@@", 385 "@@@STEP_LOG_END@json.output@@@",
386 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"compile_skia\": \"[dummy hash for c ompile_skia]\"}@@@" 386 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"compile_skia\": \"[dummy hash for c ompile_skia]\"}@@@"
387 ] 387 ]
388 }, 388 },
389 { 389 {
390 "cmd": [ 390 "cmd": [
391 "python", 391 "python",
392 "-u", 392 "-u",
393 "\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",
394 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated",
395 "8ba778e47df2a9b46355cf72c58b58fdb1a7f350"
396 ],
397 "cwd": "[SLAVE_BUILD]",
398 "name": "add_isolated_input",
399 "~followup_annotations": [
400 "@@@STEP_LOG_LINE@python.inline@@@@",
401 "@@@STEP_LOG_LINE@python.inline@import json@@@",
402 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
403 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@",
404 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@",
405 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@",
406 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@",
407 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
408 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @",
409 "@@@STEP_LOG_END@python.inline@@@"
410 ]
411 },
412 {
413 "cmd": [
414 "python",
415 "-u",
416 "[SLAVE_BUILD]/swarming.client/isolateserver.py",
417 "archive",
418 "--isolate-server",
419 "https://isolateserver.appspot.com",
420 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated"
421 ],
422 "cwd": "[SLAVE_BUILD]",
423 "name": "upload new .isolated file for compile_skia",
424 "stdout": "/path/to/tmp/"
425 },
426 {
427 "cmd": [
428 "python",
429 "-u",
393 "[SLAVE_BUILD]/swarming.client/swarming.py", 430 "[SLAVE_BUILD]/swarming.client/swarming.py",
394 "trigger", 431 "trigger",
395 "--swarming", 432 "--swarming",
396 "https://chromium-swarm.appspot.com", 433 "https://chromium-swarm.appspot.com",
397 "--isolate-server", 434 "--isolate-server",
398 "https://isolateserver.appspot.com", 435 "https://isolateserver.appspot.com",
399 "--priority", 436 "--priority",
400 "90", 437 "90",
401 "--shards", 438 "--shards",
402 "1", 439 "1",
403 "--task-name", 440 "--task-name",
404 "compile_skia/Ubuntu/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Releas e-Swarming-Trybot/5", 441 "compile_skia/Ubuntu/def456/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Sw arming-Trybot/5",
405 "--dump-json", 442 "--dump-json",
406 "/path/to/tmp/json", 443 "/path/to/tmp/json",
407 "--expiration", 444 "--expiration",
408 "14400", 445 "14400",
409 "--io-timeout", 446 "--io-timeout",
410 "1200", 447 "1200",
411 "--hard-timeout", 448 "--hard-timeout",
412 "3600", 449 "3600",
413 "--dimension", 450 "--dimension",
414 "gpu", 451 "gpu",
415 "none", 452 "none",
416 "--dimension", 453 "--dimension",
417 "os", 454 "os",
418 "Ubuntu", 455 "Ubuntu",
419 "--dimension", 456 "--dimension",
420 "pool", 457 "pool",
421 "Skia", 458 "Skia",
422 "--tag", 459 "--tag",
423 "buildername:Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot", 460 "buildername:Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot",
424 "--tag", 461 "--tag",
425 "buildnumber:5", 462 "buildnumber:5",
426 "--tag", 463 "--tag",
427 "data:[dummy hash for compile_skia]", 464 "data:def456",
428 "--tag", 465 "--tag",
429 "master:client.skia.fyi", 466 "master:client.skia.fyi",
430 "--tag", 467 "--tag",
431 "name:compile_skia", 468 "name:compile_skia",
432 "--tag", 469 "--tag",
433 "os:Ubuntu", 470 "os:Ubuntu",
434 "--tag", 471 "--tag",
435 "rietveld:https://codereview.chromium.org/500/#ps1", 472 "rietveld:https://codereview.chromium.org/500/#ps1",
436 "--tag", 473 "--tag",
437 "slavename:skiabot-linux-housekeeper-003", 474 "slavename:skiabot-linux-housekeeper-003",
438 "--tag", 475 "--tag",
439 "stepname:compile_skia on Ubuntu", 476 "stepname:compile_skia on Ubuntu",
440 "--idempotent", 477 "--idempotent",
441 "[dummy hash for compile_skia]" 478 "def456",
479 "--",
480 "cook",
481 "-repository",
482 "https://chromium.googlesource.com/chromium/tools/build",
483 "-revision",
484 "",
485 "-recipe",
486 "skia/swarm_compile",
487 "-properties",
488 "{\"rietveld\": \"https://codereview.chromium.org\", \"buildername\": \"Bu ild-Ubuntu-GCC-x86_64-Release-Swarming\", \"mastername\": \"client.skia.fyi\", \ "buildnumber\": 5, \"slavename\": \"skiabot-linux-housekeeper-003\", \"reason\": \"Triggered by Skia swarm_trigger Recipe\", \"swarm_out_dir\": \"${ISOLATED_OUT DIR}\", \"patchset\": \"1\", \"issue\": \"500\", \"revision\": 164710}",
489 "-workdir",
490 "../../.."
442 ], 491 ],
443 "cwd": "[SLAVE_BUILD]", 492 "cwd": "[SLAVE_BUILD]",
444 "name": "[trigger] compile_skia on Ubuntu", 493 "name": "[trigger] compile_skia on Ubuntu",
445 "~followup_annotations": [ 494 "~followup_annotations": [
446 "@@@STEP_LOG_LINE@json.output@{@@@", 495 "@@@STEP_LOG_LINE@json.output@{@@@",
447 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"compile_skia/Ubuntu/ [dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot/5\", @@@" , 496 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"compile_skia/Ubuntu/ def456/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot/5\", @@@",
448 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", 497 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@",
449 "@@@STEP_LOG_LINE@json.output@ \"compile_skia/Ubuntu/[dummy has/Perf-Ub untu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot/5\": {@@@", 498 "@@@STEP_LOG_LINE@json.output@ \"compile_skia/Ubuntu/def456/Perf-Ubuntu -GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot/5\": {@@@",
450 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", 499 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@",
451 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", 500 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@",
452 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm .appspot.com/user/task/10000\"@@@", 501 "@@@STEP_LOG_LINE@json.output@ \"view_url\": \"https://chromium-swarm .appspot.com/user/task/10000\"@@@",
453 "@@@STEP_LOG_LINE@json.output@ }@@@", 502 "@@@STEP_LOG_LINE@json.output@ }@@@",
454 "@@@STEP_LOG_LINE@json.output@ }@@@", 503 "@@@STEP_LOG_LINE@json.output@ }@@@",
455 "@@@STEP_LOG_LINE@json.output@}@@@", 504 "@@@STEP_LOG_LINE@json.output@}@@@",
456 "@@@STEP_LOG_END@json.output@@@", 505 "@@@STEP_LOG_END@json.output@@@",
457 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@ @@" 506 "@@@STEP_LINK@shard #0@https://chromium-swarm.appspot.com/user/task/10000@ @@"
458 ] 507 ]
459 }, 508 },
460 { 509 {
461 "cmd": [ 510 "cmd": [
462 "python", 511 "python",
463 "-u", 512 "-u",
464 "[SLAVE_BUILD]/swarming.client/swarming.py", 513 "[SLAVE_BUILD]/swarming.client/swarming.py",
465 "collect", 514 "collect",
466 "--swarming", 515 "--swarming",
467 "https://chromium-swarm.appspot.com", 516 "https://chromium-swarm.appspot.com",
468 "--decorate", 517 "--decorate",
469 "--print-status-updates", 518 "--print-status-updates",
470 "--shards", 519 "--shards",
471 "1", 520 "1",
472 "compile_skia/Ubuntu/[dummy has/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Releas e-Swarming-Trybot/5", 521 "compile_skia/Ubuntu/def456/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Sw arming-Trybot/5",
473 "--task-summary-json", 522 "--task-summary-json",
474 "/path/to/tmp/json" 523 "/path/to/tmp/json"
475 ], 524 ],
476 "cwd": "[SLAVE_BUILD]", 525 "cwd": "[SLAVE_BUILD]",
477 "name": "compile_skia on Ubuntu", 526 "name": "compile_skia on Ubuntu",
478 "~followup_annotations": [ 527 "~followup_annotations": [
479 "@@@STEP_TEXT@swarming pending 71s@@@", 528 "@@@STEP_TEXT@swarming pending 71s@@@",
480 "@@@STEP_LOG_LINE@json.output@{@@@", 529 "@@@STEP_LOG_LINE@json.output@{@@@",
481 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@", 530 "@@@STEP_LOG_LINE@json.output@ \"shards\": [@@@",
482 "@@@STEP_LOG_LINE@json.output@ {@@@", 531 "@@@STEP_LOG_LINE@json.output@ {@@@",
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@", 614 "@@@STEP_LOG_LINE@python.inline@ sys.exit(1)@@@",
566 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@", 615 "@@@STEP_LOG_LINE@python.inline@ os.makedirs(path, mode)@@@",
567 "@@@STEP_LOG_END@python.inline@@@" 616 "@@@STEP_LOG_END@python.inline@@@"
568 ] 617 ]
569 }, 618 },
570 { 619 {
571 "cmd": [ 620 "cmd": [
572 "python", 621 "python",
573 "-u", 622 "-u",
574 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n", 623 "\nimport shutil\nimport sys\nshutil.copy(sys.argv[1], sys.argv[2])\n",
575 "{\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 \"Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release- Swarming-Trybot\", \n \"--extra-variable\", \n \"PATCHSET\", \n \"1\", \n \"--extra-variable\", \n \"ISSUE\", \n \"500 \", \n \"--extra-variable\", \n \"REVISION\", \n 164710\n ], \n \"dir\": \"[SLAVE_BUILD]/skia/infra/bots\", \n \"version\": 1\n}", 624 "{\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}",
576 "[SLAVE_BUILD]/swarming_temp_dir/perf_skia.isolated.gen.json" 625 "[SLAVE_BUILD]/swarming_temp_dir/perf_skia.isolated.gen.json"
577 ], 626 ],
578 "cwd": "[SLAVE_BUILD]", 627 "cwd": "[SLAVE_BUILD]",
579 "name": "Write perf_skia.isolated.gen.json" 628 "name": "Write perf_skia.isolated.gen.json"
580 }, 629 },
581 { 630 {
582 "cmd": [ 631 "cmd": [
583 "python", 632 "python",
584 "-u", 633 "-u",
585 "RECIPE_MODULE[build::isolate]/resources/isolate.py", 634 "RECIPE_MODULE[build::isolate]/resources/isolate.py",
(...skipping 13 matching lines...) Expand all
599 "@@@STEP_LOG_LINE@json.output@ \"perf_skia\": \"[dummy hash for perf_skia ]\"@@@", 648 "@@@STEP_LOG_LINE@json.output@ \"perf_skia\": \"[dummy hash for perf_skia ]\"@@@",
600 "@@@STEP_LOG_LINE@json.output@}@@@", 649 "@@@STEP_LOG_LINE@json.output@}@@@",
601 "@@@STEP_LOG_END@json.output@@@", 650 "@@@STEP_LOG_END@json.output@@@",
602 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"perf_skia\": \"[dummy hash for perf _skia]\"}@@@" 651 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"perf_skia\": \"[dummy hash for perf _skia]\"}@@@"
603 ] 652 ]
604 }, 653 },
605 { 654 {
606 "cmd": [ 655 "cmd": [
607 "python", 656 "python",
608 "-u", 657 "-u",
609 "\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", 658 "\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",
610 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated", 659 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-perf_skia.isolated",
611 "abc123" 660 "abc123",
661 "8ba778e47df2a9b46355cf72c58b58fdb1a7f350"
612 ], 662 ],
613 "cwd": "[SLAVE_BUILD]", 663 "cwd": "[SLAVE_BUILD]",
614 "name": "add_isolated_input", 664 "name": "add_isolated_input (2)",
615 "~followup_annotations": [ 665 "~followup_annotations": [
616 "@@@STEP_LOG_LINE@python.inline@@@@", 666 "@@@STEP_LOG_LINE@python.inline@@@@",
617 "@@@STEP_LOG_LINE@python.inline@import json@@@", 667 "@@@STEP_LOG_LINE@python.inline@import json@@@",
618 "@@@STEP_LOG_LINE@python.inline@import sys@@@", 668 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
619 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", 669 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@",
620 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", 670 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@",
621 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", 671 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@",
622 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(sys.argv[2]) @@@", 672 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@",
623 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", 673 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
624 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @", 674 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @",
625 "@@@STEP_LOG_END@python.inline@@@" 675 "@@@STEP_LOG_END@python.inline@@@"
626 ] 676 ]
627 }, 677 },
628 { 678 {
629 "cmd": [ 679 "cmd": [
630 "python", 680 "python",
631 "-u", 681 "-u",
632 "[SLAVE_BUILD]/swarming.client/isolateserver.py", 682 "[SLAVE_BUILD]/swarming.client/isolateserver.py",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
683 "--tag", 733 "--tag",
684 "name:perf_skia", 734 "name:perf_skia",
685 "--tag", 735 "--tag",
686 "os:Ubuntu", 736 "os:Ubuntu",
687 "--tag", 737 "--tag",
688 "rietveld:https://codereview.chromium.org/500/#ps1", 738 "rietveld:https://codereview.chromium.org/500/#ps1",
689 "--tag", 739 "--tag",
690 "slavename:skiabot-linux-housekeeper-003", 740 "slavename:skiabot-linux-housekeeper-003",
691 "--tag", 741 "--tag",
692 "stepname:perf_skia on Ubuntu", 742 "stepname:perf_skia on Ubuntu",
693 "def456" 743 "def456",
744 "--",
745 "cook",
746 "-repository",
747 "https://chromium.googlesource.com/chromium/tools/build",
748 "-revision",
749 "",
750 "-recipe",
751 "skia/swarm_perf",
752 "-properties",
753 "{\"rietveld\": \"https://codereview.chromium.org\", \"buildername\": \"Pe rf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot\", \"mastername\": \"c lient.skia.fyi\", \"buildnumber\": 5, \"slavename\": \"skiabot-linux-housekeeper -003\", \"reason\": \"Triggered by Skia swarm_trigger Recipe\", \"swarm_out_dir\ ": \"${ISOLATED_OUTDIR}\", \"patchset\": \"1\", \"issue\": \"500\", \"revision\" : 164710}",
754 "-workdir",
755 "../../.."
694 ], 756 ],
695 "cwd": "[SLAVE_BUILD]", 757 "cwd": "[SLAVE_BUILD]",
696 "name": "[trigger] perf_skia on Ubuntu", 758 "name": "[trigger] perf_skia on Ubuntu",
697 "~followup_annotations": [ 759 "~followup_annotations": [
698 "@@@STEP_LOG_LINE@json.output@{@@@", 760 "@@@STEP_LOG_LINE@json.output@{@@@",
699 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"perf_skia/Ubuntu/def 456/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot/5\", @@@", 761 "@@@STEP_LOG_LINE@json.output@ \"base_task_name\": \"perf_skia/Ubuntu/def 456/Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot/5\", @@@",
700 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@", 762 "@@@STEP_LOG_LINE@json.output@ \"tasks\": {@@@",
701 "@@@STEP_LOG_LINE@json.output@ \"perf_skia/Ubuntu/def456/Perf-Ubuntu-GC C-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot/5\": {@@@", 763 "@@@STEP_LOG_LINE@json.output@ \"perf_skia/Ubuntu/def456/Perf-Ubuntu-GC C-GCE-CPU-AVX2-x86_64-Release-Swarming-Trybot/5\": {@@@",
702 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@", 764 "@@@STEP_LOG_LINE@json.output@ \"shard_index\": 0, @@@",
703 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@", 765 "@@@STEP_LOG_LINE@json.output@ \"task_id\": \"10000\", @@@",
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
876 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto" 938 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto"
877 }, 939 },
878 "name": "Upload perf results" 940 "name": "Upload perf results"
879 }, 941 },
880 { 942 {
881 "name": "$result", 943 "name": "$result",
882 "recipe_result": null, 944 "recipe_result": null,
883 "status_code": 0 945 "status_code": 0
884 } 946 }
885 ] 947 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698