OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", | 6 "RECIPE_MODULE[depot_tools::git]/resources/git_setup.py", |
7 "--path", | 7 "--path", |
8 "[SLAVE_BUILD]/src", | 8 "[SLAVE_BUILD]/src", |
9 "--url", | 9 "--url", |
10 "https://chromium.googlesource.com/chromium/src.git" | 10 "https://chromium.googlesource.com/chromium/src.git" |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 "cmd": [ | 195 "cmd": [ |
196 "git", | 196 "git", |
197 "status" | 197 "status" |
198 ], | 198 ], |
199 "cwd": "[SLAVE_BUILD]/src", | 199 "cwd": "[SLAVE_BUILD]/src", |
200 "name": "git status cannot_fail_build" | 200 "name": "git status cannot_fail_build" |
201 }, | 201 }, |
202 { | 202 { |
203 "cmd": [ | 203 "cmd": [ |
204 "git", | 204 "git", |
| 205 "new-branch", |
| 206 "refactor" |
| 207 ], |
| 208 "cwd": "[SLAVE_BUILD]/src", |
| 209 "env": { |
| 210 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 211 }, |
| 212 "name": "git new-branch refactor" |
| 213 }, |
| 214 { |
| 215 "cmd": [ |
| 216 "git", |
| 217 "new-branch", |
| 218 "feature", |
| 219 "--upstream", |
| 220 "refactor" |
| 221 ], |
| 222 "cwd": "[SLAVE_BUILD]/src", |
| 223 "env": { |
| 224 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 225 }, |
| 226 "name": "git new-branch feature" |
| 227 }, |
| 228 { |
| 229 "cmd": [ |
| 230 "git", |
205 "rebase", | 231 "rebase", |
206 "origin/master" | 232 "origin/master" |
207 ], | 233 ], |
208 "cwd": "[SLAVE_BUILD]/src", | 234 "cwd": "[SLAVE_BUILD]/src", |
209 "name": "my repo rebase" | 235 "name": "my repo rebase" |
210 }, | 236 }, |
211 { | 237 { |
212 "cmd": [ | 238 "cmd": [ |
213 "git", | 239 "git", |
214 "bundle", | 240 "bundle", |
215 "create", | 241 "create", |
216 "[SLAVE_BUILD]/all.bundle", | 242 "[SLAVE_BUILD]/all.bundle", |
217 "--all" | 243 "--all" |
218 ], | 244 ], |
219 "cwd": "[SLAVE_BUILD]/src", | 245 "cwd": "[SLAVE_BUILD]/src", |
220 "name": "git bundle" | 246 "name": "git bundle" |
221 }, | 247 }, |
222 { | 248 { |
223 "name": "$result", | 249 "name": "$result", |
224 "recipe_result": null, | 250 "recipe_result": null, |
225 "status_code": 0 | 251 "status_code": 0 |
226 } | 252 } |
227 ] | 253 ] |
OLD | NEW |