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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 "user.email", | 75 "user.email", |
76 "local_bot@example.com" | 76 "local_bot@example.com" |
77 ], | 77 ], |
78 "env": { | 78 "env": { |
79 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 79 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
80 }, | 80 }, |
81 "name": "gclient recurse (git config user.email)" | 81 "name": "gclient recurse (git config user.email)" |
82 }, | 82 }, |
83 { | 83 { |
84 "cmd": [ | 84 "cmd": [ |
| 85 "git", |
| 86 "diff", |
| 87 "--cached", |
| 88 "--name-only" |
| 89 ], |
| 90 "cwd": "[ROOT]/src", |
| 91 "name": "git diff to analyze patch", |
| 92 "stdout": "/path/to/tmp/", |
| 93 "~followup_annotations": [ |
| 94 "@@@STEP_LOG_LINE@files@src/foo.cc@@@", |
| 95 "@@@STEP_LOG_END@files@@@" |
| 96 ] |
| 97 }, |
| 98 { |
| 99 "cmd": [ |
85 "python", | 100 "python", |
86 "-u", | 101 "-u", |
87 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 102 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
88 "config", | 103 "config", |
89 "--spec", | 104 "--spec", |
90 "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'}]" | 105 "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'}]" |
91 ], | 106 ], |
92 "cwd": "[SLAVE_BUILD]/src/third_party", | 107 "cwd": "[SLAVE_BUILD]/src/third_party", |
93 "env": { | 108 "env": { |
94 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 109 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 180 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
166 }, | 181 }, |
167 "name": "gclient runhooks" | 182 "name": "gclient runhooks" |
168 }, | 183 }, |
169 { | 184 { |
170 "name": "$result", | 185 "name": "$result", |
171 "recipe_result": null, | 186 "recipe_result": null, |
172 "status_code": 0 | 187 "status_code": 0 |
173 } | 188 } |
174 ] | 189 ] |
OLD | NEW |