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 "--remote", | 11 "--remote", |
12 "not_origin" | 12 "not_origin" |
13 ], | 13 ], |
14 "name": "git setup" | 14 "name": "git setup" |
15 }, | 15 }, |
16 { | 16 { |
17 "cmd": [ | 17 "cmd": [ |
18 "git", | 18 "git", |
19 "retry", | 19 "retry", |
20 "fetch", | 20 "fetch", |
21 "not_origin", | 21 "not_origin", |
22 "master", | 22 "master", |
23 "--recurse-submodules" | 23 "--recurse-submodules" |
24 ], | 24 ], |
25 "cwd": "[SLAVE_BUILD]/src", | 25 "cwd": "[SLAVE_BUILD]/src", |
| 26 "env": { |
| 27 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 28 }, |
26 "name": "git fetch" | 29 "name": "git fetch" |
27 }, | 30 }, |
28 { | 31 { |
29 "cmd": [ | 32 "cmd": [ |
30 "git", | 33 "git", |
31 "checkout", | 34 "checkout", |
32 "-f", | 35 "-f", |
33 "FETCH_HEAD" | 36 "FETCH_HEAD" |
34 ], | 37 ], |
35 "cwd": "[SLAVE_BUILD]/src", | 38 "cwd": "[SLAVE_BUILD]/src", |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 ], | 173 ], |
171 "cwd": "[SLAVE_BUILD]/src", | 174 "cwd": "[SLAVE_BUILD]/src", |
172 "name": "git bundle" | 175 "name": "git bundle" |
173 }, | 176 }, |
174 { | 177 { |
175 "name": "$result", | 178 "name": "$result", |
176 "recipe_result": null, | 179 "recipe_result": null, |
177 "status_code": 0 | 180 "status_code": 0 |
178 } | 181 } |
179 ] | 182 ] |
OLD | NEW |