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

Side by Side Diff: scripts/slave/recipes/skia/swarm_trigger.expected/Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release-Swarming.json

Issue 1916263003: Reland "Skia: Maintain a checkout on swarming (compile) bots" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix expectations after roll Created 4 years, 7 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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 "@@@STEP_LOG_LINE@json.output@ \"compile_skia\": \"[dummy hash for compil e_skia]\"@@@", 461 "@@@STEP_LOG_LINE@json.output@ \"compile_skia\": \"[dummy hash for compil e_skia]\"@@@",
462 "@@@STEP_LOG_LINE@json.output@}@@@", 462 "@@@STEP_LOG_LINE@json.output@}@@@",
463 "@@@STEP_LOG_END@json.output@@@", 463 "@@@STEP_LOG_END@json.output@@@",
464 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"compile_skia\": \"[dummy hash for c ompile_skia]\"}@@@" 464 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"compile_skia\": \"[dummy hash for c ompile_skia]\"}@@@"
465 ] 465 ]
466 }, 466 },
467 { 467 {
468 "cmd": [ 468 "cmd": [
469 "python", 469 "python",
470 "-u", 470 "-u",
471 "\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", 471 "\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = jso n.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
472 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated", 472 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated",
473 "[dummy hash for isolate_recipes]" 473 "[dummy hash for isolate_recipes]"
474 ], 474 ],
475 "name": "add_isolated_input", 475 "name": "add_isolated_input",
476 "~followup_annotations": [ 476 "~followup_annotations": [
477 "@@@STEP_LOG_LINE@python.inline@@@@", 477 "@@@STEP_LOG_LINE@python.inline@@@@",
478 "@@@STEP_LOG_LINE@python.inline@import json@@@", 478 "@@@STEP_LOG_LINE@python.inline@import json@@@",
479 "@@@STEP_LOG_LINE@python.inline@import sys@@@", 479 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
480 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", 480 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@",
481 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", 481 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@",
482 "@@@STEP_LOG_LINE@python.inline@if not isolated.get('includes'):@@@",
483 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'] = []@@@",
482 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", 484 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@",
483 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@", 485 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@",
484 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", 486 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
485 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @", 487 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @",
486 "@@@STEP_LOG_END@python.inline@@@" 488 "@@@STEP_LOG_END@python.inline@@@"
487 ] 489 ]
488 }, 490 },
489 { 491 {
490 "cmd": [ 492 "cmd": [
491 "python", 493 "python",
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 "@@@STEP_LOG_LINE@json.output@ \"test_skia\": \"[dummy hash for test_skia ]\"@@@", 754 "@@@STEP_LOG_LINE@json.output@ \"test_skia\": \"[dummy hash for test_skia ]\"@@@",
753 "@@@STEP_LOG_LINE@json.output@}@@@", 755 "@@@STEP_LOG_LINE@json.output@}@@@",
754 "@@@STEP_LOG_END@json.output@@@", 756 "@@@STEP_LOG_END@json.output@@@",
755 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"test_skia\": \"[dummy hash for test _skia]\"}@@@" 757 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"test_skia\": \"[dummy hash for test _skia]\"}@@@"
756 ] 758 ]
757 }, 759 },
758 { 760 {
759 "cmd": [ 761 "cmd": [
760 "python", 762 "python",
761 "-u", 763 "-u",
762 "\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", 764 "\nimport json\nimport sys\nwith open(sys.argv[1]) as f:\n isolated = jso n.load(f)\nif not isolated.get('includes'):\n isolated['includes'] = []\nfor h in sys.argv[2:]:\n isolated['includes'].append(h)\nwith open(sys.argv[1], 'w') as f:\n json.dump(isolated, f, sort_keys=True)\n",
763 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated", 765 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-test_skia.isolated",
764 "[dummy hash for isolate_recipes]", 766 "[dummy hash for isolate_recipes]",
765 "abc123" 767 "abc123"
766 ], 768 ],
767 "name": "add_isolated_input (2)", 769 "name": "add_isolated_input (2)",
768 "~followup_annotations": [ 770 "~followup_annotations": [
769 "@@@STEP_LOG_LINE@python.inline@@@@", 771 "@@@STEP_LOG_LINE@python.inline@@@@",
770 "@@@STEP_LOG_LINE@python.inline@import json@@@", 772 "@@@STEP_LOG_LINE@python.inline@import json@@@",
771 "@@@STEP_LOG_LINE@python.inline@import sys@@@", 773 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
772 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", 774 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@",
773 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", 775 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@",
776 "@@@STEP_LOG_LINE@python.inline@if not isolated.get('includes'):@@@",
777 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'] = []@@@",
774 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", 778 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@",
775 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@", 779 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@",
776 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", 780 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
777 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @", 781 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @",
778 "@@@STEP_LOG_END@python.inline@@@" 782 "@@@STEP_LOG_END@python.inline@@@"
779 ] 783 ]
780 }, 784 },
781 { 785 {
782 "cmd": [ 786 "cmd": [
783 "python", 787 "python",
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto" 1002 "BOTO_CONFIG": "[HOME]/chromium-skia-gm.boto"
999 }, 1003 },
1000 "name": "Upload DM Results" 1004 "name": "Upload DM Results"
1001 }, 1005 },
1002 { 1006 {
1003 "name": "$result", 1007 "name": "$result",
1004 "recipe_result": null, 1008 "recipe_result": null,
1005 "status_code": 0 1009 "status_code": 0
1006 } 1010 }
1007 ] 1011 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698