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 "cache", |
| 19 "fetch", |
| 20 "-c", |
| 21 "[GIT_CACHE]" |
| 22 ], |
| 23 "cwd": "[SLAVE_BUILD]/src", |
| 24 "name": "fetch cache" |
| 25 }, |
| 26 { |
| 27 "cmd": [ |
| 28 "git", |
| 29 "retry", |
18 "fetch", | 30 "fetch", |
19 "origin", | 31 "origin", |
20 "master", | 32 "master", |
21 "--recurse-submodules" | 33 "--recurse-submodules" |
22 ], | 34 ], |
23 "cwd": "[SLAVE_BUILD]/src", | 35 "cwd": "[SLAVE_BUILD]/src", |
24 "name": "git fetch" | 36 "name": "git fetch" |
25 }, | 37 }, |
26 { | 38 { |
27 "cmd": [ | 39 "cmd": [ |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 ], | 180 ], |
169 "cwd": "[SLAVE_BUILD]/src", | 181 "cwd": "[SLAVE_BUILD]/src", |
170 "name": "git bundle" | 182 "name": "git bundle" |
171 }, | 183 }, |
172 { | 184 { |
173 "name": "$result", | 185 "name": "$result", |
174 "recipe_result": null, | 186 "recipe_result": null, |
175 "status_code": 0 | 187 "status_code": 0 |
176 } | 188 } |
177 ] | 189 ] |
OLD | NEW |