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" |
11 ], | 11 ], |
12 "name": "git setup" | 12 "name": "git setup" |
13 }, | 13 }, |
14 { | 14 { |
15 "cmd": [ | 15 "cmd": [ |
16 "git", | 16 "git", |
17 "retry", | 17 "retry", |
18 "fetch", | 18 "fetch", |
19 "origin", | 19 "origin", |
20 "abcdef12345", | 20 "abcdef12345", |
21 "--recurse-submodules" | 21 "--recurse-submodules" |
22 ], | 22 ], |
23 "cwd": "[SLAVE_BUILD]/src", | 23 "cwd": "[SLAVE_BUILD]/src", |
| 24 "env": { |
| 25 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 26 }, |
24 "name": "git fetch" | 27 "name": "git fetch" |
25 }, | 28 }, |
26 { | 29 { |
27 "cmd": [ | 30 "cmd": [ |
28 "git", | 31 "git", |
29 "checkout", | 32 "checkout", |
30 "-f", | 33 "-f", |
31 "FETCH_HEAD" | 34 "FETCH_HEAD" |
32 ], | 35 ], |
33 "cwd": "[SLAVE_BUILD]/src", | 36 "cwd": "[SLAVE_BUILD]/src", |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 ], | 193 ], |
191 "cwd": "[SLAVE_BUILD]/src", | 194 "cwd": "[SLAVE_BUILD]/src", |
192 "name": "git bundle" | 195 "name": "git bundle" |
193 }, | 196 }, |
194 { | 197 { |
195 "name": "$result", | 198 "name": "$result", |
196 "recipe_result": null, | 199 "recipe_result": null, |
197 "status_code": 0 | 200 "status_code": 0 |
198 } | 201 } |
199 ] | 202 ] |
OLD | NEW |