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

Side by Side Diff: scripts/slave/recipes/skia/swarm_trigger.expected/Build-Mac-Clang-x86_64-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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 "@@@STEP_LOG_LINE@json.output@ \"compile_skia\": \"[dummy hash for compil e_skia]\"@@@", 415 "@@@STEP_LOG_LINE@json.output@ \"compile_skia\": \"[dummy hash for compil e_skia]\"@@@",
416 "@@@STEP_LOG_LINE@json.output@}@@@", 416 "@@@STEP_LOG_LINE@json.output@}@@@",
417 "@@@STEP_LOG_END@json.output@@@", 417 "@@@STEP_LOG_END@json.output@@@",
418 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"compile_skia\": \"[dummy hash for c ompile_skia]\"}@@@" 418 "@@@SET_BUILD_PROPERTY@swarm_hashes@{\"compile_skia\": \"[dummy hash for c ompile_skia]\"}@@@"
419 ] 419 ]
420 }, 420 },
421 { 421 {
422 "cmd": [ 422 "cmd": [
423 "python", 423 "python",
424 "-u", 424 "-u",
425 "\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", 425 "\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",
426 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated", 426 "[SLAVE_BUILD]/swarming_temp_dir/skia-task-compile_skia.isolated",
427 "[dummy hash for isolate_recipes]" 427 "[dummy hash for isolate_recipes]"
428 ], 428 ],
429 "name": "add_isolated_input", 429 "name": "add_isolated_input",
430 "~followup_annotations": [ 430 "~followup_annotations": [
431 "@@@STEP_LOG_LINE@python.inline@@@@", 431 "@@@STEP_LOG_LINE@python.inline@@@@",
432 "@@@STEP_LOG_LINE@python.inline@import json@@@", 432 "@@@STEP_LOG_LINE@python.inline@import json@@@",
433 "@@@STEP_LOG_LINE@python.inline@import sys@@@", 433 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
434 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@", 434 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1]) as f:@@@",
435 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@", 435 "@@@STEP_LOG_LINE@python.inline@ isolated = json.load(f)@@@",
436 "@@@STEP_LOG_LINE@python.inline@if not isolated.get('includes'):@@@",
437 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'] = []@@@",
436 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@", 438 "@@@STEP_LOG_LINE@python.inline@for h in sys.argv[2:]:@@@",
437 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@", 439 "@@@STEP_LOG_LINE@python.inline@ isolated['includes'].append(h)@@@",
438 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@", 440 "@@@STEP_LOG_LINE@python.inline@with open(sys.argv[1], 'w') as f:@@@",
439 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @", 441 "@@@STEP_LOG_LINE@python.inline@ json.dump(isolated, f, sort_keys=True)@@ @",
440 "@@@STEP_LOG_END@python.inline@@@" 442 "@@@STEP_LOG_END@python.inline@@@"
441 ] 443 ]
442 }, 444 },
443 { 445 {
444 "cmd": [ 446 "cmd": [
445 "python", 447 "python",
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 "@@@STEP_LOG_END@json.output@@@", 593 "@@@STEP_LOG_END@json.output@@@",
592 "@@@STEP_LINK@shard #0 isolated out@blah@@@" 594 "@@@STEP_LINK@shard #0 isolated out@blah@@@"
593 ] 595 ]
594 }, 596 },
595 { 597 {
596 "name": "$result", 598 "name": "$result",
597 "recipe_result": null, 599 "recipe_result": null,
598 "status_code": 0 600 "status_code": 0
599 } 601 }
600 ] 602 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698