| 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", | 18 "cache", |
| 19 "fetch", | 19 "fetch", |
| 20 "-c", | 20 "-c", |
| 21 "[GIT_CACHE]" | 21 "[GIT_CACHE]" |
| 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": "fetch cache" | 27 "name": "fetch cache" |
| 25 }, | 28 }, |
| 26 { | 29 { |
| 27 "cmd": [ | 30 "cmd": [ |
| 28 "git", | 31 "git", |
| 29 "retry", | 32 "retry", |
| 30 "fetch", | 33 "fetch", |
| 31 "origin", | 34 "origin", |
| 32 "master", | 35 "master", |
| 33 "--recurse-submodules" | 36 "--recurse-submodules" |
| 34 ], | 37 ], |
| 35 "cwd": "[SLAVE_BUILD]/src", | 38 "cwd": "[SLAVE_BUILD]/src", |
| 39 "env": { |
| 40 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 41 }, |
| 36 "name": "git fetch" | 42 "name": "git fetch" |
| 37 }, | 43 }, |
| 38 { | 44 { |
| 39 "cmd": [ | 45 "cmd": [ |
| 40 "git", | 46 "git", |
| 41 "checkout", | 47 "checkout", |
| 42 "-f", | 48 "-f", |
| 43 "FETCH_HEAD" | 49 "FETCH_HEAD" |
| 44 ], | 50 ], |
| 45 "cwd": "[SLAVE_BUILD]/src", | 51 "cwd": "[SLAVE_BUILD]/src", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 ], | 186 ], |
| 181 "cwd": "[SLAVE_BUILD]/src", | 187 "cwd": "[SLAVE_BUILD]/src", |
| 182 "name": "git bundle" | 188 "name": "git bundle" |
| 183 }, | 189 }, |
| 184 { | 190 { |
| 185 "name": "$result", | 191 "name": "$result", |
| 186 "recipe_result": null, | 192 "recipe_result": null, |
| 187 "status_code": 0 | 193 "status_code": 0 |
| 188 } | 194 } |
| 189 ] | 195 ] |
| OLD | NEW |