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 = '[ROOT]/git_cache'\nsolutions = [{'deps_file': '.DEPS.git', '
managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromiu
m/src.git'}]" | 9 "cache_dir = '[ROOT]/git_cache'\nsolutions = [{'deps_file': '.DEPS.git', '
managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/chromiu
m/src.git'}]" |
10 ], | 10 ], |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 "user.email", | 73 "user.email", |
74 "local_bot@example.com" | 74 "local_bot@example.com" |
75 ], | 75 ], |
76 "env": { | 76 "env": { |
77 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 77 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
78 }, | 78 }, |
79 "name": "gclient recurse (git config user.email)" | 79 "name": "gclient recurse (git config user.email)" |
80 }, | 80 }, |
81 { | 81 { |
82 "cmd": [ | 82 "cmd": [ |
| 83 "git", |
| 84 "diff", |
| 85 "--cached", |
| 86 "--name-only" |
| 87 ], |
| 88 "cwd": "[ROOT]/src", |
| 89 "name": "git diff to analyze patch", |
| 90 "stdout": "/path/to/tmp/", |
| 91 "~followup_annotations": [ |
| 92 "@@@STEP_LOG_LINE@files@src/foo.cc@@@", |
| 93 "@@@STEP_LOG_END@files@@@" |
| 94 ] |
| 95 }, |
| 96 { |
| 97 "cmd": [ |
83 "python", | 98 "python", |
84 "-u", | 99 "-u", |
85 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 100 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
86 "config", | 101 "config", |
87 "--spec", | 102 "--spec", |
88 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
True, 'name': 'WebKit', 'safesync_url': 'https://blink-status.appspot.com/lkgr',
'url': 'svn://svn.chromium.org/blink/trunk'}]" | 103 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed':
True, 'name': 'WebKit', 'safesync_url': 'https://blink-status.appspot.com/lkgr',
'url': 'svn://svn.chromium.org/blink/trunk'}]" |
89 ], | 104 ], |
90 "cwd": "[SLAVE_BUILD]/src/third_party", | 105 "cwd": "[SLAVE_BUILD]/src/third_party", |
91 "env": { | 106 "env": { |
92 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 107 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 178 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
164 }, | 179 }, |
165 "name": "gclient runhooks" | 180 "name": "gclient runhooks" |
166 }, | 181 }, |
167 { | 182 { |
168 "name": "$result", | 183 "name": "$result", |
169 "recipe_result": null, | 184 "recipe_result": null, |
170 "status_code": 0 | 185 "status_code": 0 |
171 } | 186 } |
172 ] | 187 ] |
OLD | NEW |