| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 6 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 7 "config", | 7 "config", |
| 8 "--spec", | 8 "--spec", |
| 9 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
True, 'name': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpad/cra
shpad.git'}]" | 9 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': '.DEPS.git', 'manag
ed': True, 'name': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpa
d/crashpad.git'}]" |
| 10 ], | 10 ], |
| 11 "env": { | 11 "env": { |
| 12 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 12 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 13 }, | 13 }, |
| 14 "name": "gclient setup" | 14 "name": "gclient setup" |
| 15 }, | 15 }, |
| 16 { | 16 { |
| 17 "cmd": [ | 17 "cmd": [ |
| 18 "python", | 18 "python", |
| 19 "-u", | 19 "-u", |
| 20 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 20 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 21 "sync", | 21 "sync", |
| 22 "--verbose", |
| 23 "--with_branch_heads", |
| 22 "--nohooks", | 24 "--nohooks", |
| 25 "-j8", |
| 26 "--reset", |
| 23 "--force", | 27 "--force", |
| 24 "--verbose", | 28 "--upstream", |
| 29 "--no-nag-max", |
| 25 "--delete_unversioned_trees", | 30 "--delete_unversioned_trees", |
| 26 "--output-json", | 31 "--output-json", |
| 27 "/path/to/tmp/json" | 32 "/path/to/tmp/json" |
| 28 ], | 33 ], |
| 29 "env": { | 34 "env": { |
| 30 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 35 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 31 }, | 36 }, |
| 32 "name": "gclient sync", | 37 "name": "gclient sync", |
| 33 "~followup_annotations": [ | 38 "~followup_annotations": [ |
| 34 "@@@STEP_LOG_LINE@json.output@{@@@", | 39 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 35 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | 40 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", |
| 36 "@@@STEP_LOG_LINE@json.output@ \"crashpad/\": {@@@", | 41 "@@@STEP_LOG_LINE@json.output@ \"crashpad/\": {@@@", |
| 37 "@@@STEP_LOG_LINE@json.output@ \"revision\": 16463@@@", | 42 "@@@STEP_LOG_LINE@json.output@ \"revision\": \"e6ebda0f8dc589a150c612
132e67916df288f343\"@@@", |
| 38 "@@@STEP_LOG_LINE@json.output@ }@@@", | 43 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 39 "@@@STEP_LOG_LINE@json.output@ }@@@", | 44 "@@@STEP_LOG_LINE@json.output@ }@@@", |
| 40 "@@@STEP_LOG_LINE@json.output@}@@@", | 45 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 41 "@@@STEP_LOG_END@json.output@@@" | 46 "@@@STEP_LOG_END@json.output@@@" |
| 42 ] | 47 ] |
| 43 }, | 48 }, |
| 44 { | 49 { |
| 45 "cmd": [ | 50 "cmd": [ |
| 46 "python", | 51 "python", |
| 47 "-u", | 52 "-u", |
| 53 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 54 "recurse", |
| 55 "git", |
| 56 "config", |
| 57 "user.name", |
| 58 "local_bot" |
| 59 ], |
| 60 "env": { |
| 61 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 62 }, |
| 63 "name": "gclient recurse (git config user.name)" |
| 64 }, |
| 65 { |
| 66 "cmd": [ |
| 67 "python", |
| 68 "-u", |
| 69 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 70 "recurse", |
| 71 "git", |
| 72 "config", |
| 73 "user.email", |
| 74 "local_bot@example.com" |
| 75 ], |
| 76 "env": { |
| 77 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 78 }, |
| 79 "name": "gclient recurse (git config user.email)" |
| 80 }, |
| 81 { |
| 82 "cmd": [ |
| 83 "python", |
| 84 "-u", |
| 48 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", | 85 "\nimport os, sys\nfrom common import chromium_utils # Error? See https://
crbug.com/584783.\n\n\nif os.path.exists(sys.argv[1]):\n chromium_utils.RemoveD
irectory(sys.argv[1])\n", |
| 49 "[SLAVE_BUILD]/crashpad/out" | 86 "[SLAVE_BUILD]/crashpad/out" |
| 50 ], | 87 ], |
| 51 "name": "rmtree out", | 88 "name": "rmtree out", |
| 52 "~followup_annotations": [ | 89 "~followup_annotations": [ |
| 53 "@@@STEP_LOG_LINE@python.inline@@@@", | 90 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 54 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | 91 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", |
| 55 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", | 92 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils # Error?
See https://crbug.com/584783.@@@", |
| 56 "@@@STEP_LOG_LINE@python.inline@@@@", | 93 "@@@STEP_LOG_LINE@python.inline@@@@", |
| 57 "@@@STEP_LOG_LINE@python.inline@@@@", | 94 "@@@STEP_LOG_LINE@python.inline@@@@", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "Release" | 126 "Release" |
| 90 ], | 127 ], |
| 91 "name": "run tests" | 128 "name": "run tests" |
| 92 }, | 129 }, |
| 93 { | 130 { |
| 94 "name": "$result", | 131 "name": "$result", |
| 95 "recipe_result": null, | 132 "recipe_result": null, |
| 96 "status_code": 0 | 133 "status_code": 0 |
| 97 } | 134 } |
| 98 ] | 135 ] |
| OLD | NEW |