| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\win_tools.bat" | 4 "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\win_tools.bat" |
| 5 ], | 5 ], |
| 6 "cwd": "RECIPE_PACKAGE_REPO[depot_tools]", | 6 "cwd": "RECIPE_PACKAGE_REPO[depot_tools]", |
| 7 "name": "ensure git tooling on windows", | 7 "name": "ensure git tooling on windows", |
| 8 "timeout": 300 | 8 "timeout": 300 |
| 9 }, | 9 }, |
| 10 { | 10 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 { | 24 { |
| 25 "cmd": [ | 25 "cmd": [ |
| 26 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 26 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
| 27 "retry", | 27 "retry", |
| 28 "fetch", | 28 "fetch", |
| 29 "origin", | 29 "origin", |
| 30 "master", | 30 "master", |
| 31 "--recurse-submodules" | 31 "--recurse-submodules" |
| 32 ], | 32 ], |
| 33 "cwd": "[SLAVE_BUILD]\\src", | 33 "cwd": "[SLAVE_BUILD]\\src", |
| 34 "env": { |
| 35 "PATH": "RECIPE_PACKAGE_REPO[depot_tools];%(PATH)s" |
| 36 }, |
| 34 "name": "git fetch" | 37 "name": "git fetch" |
| 35 }, | 38 }, |
| 36 { | 39 { |
| 37 "cmd": [ | 40 "cmd": [ |
| 38 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 41 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
| 39 "checkout", | 42 "checkout", |
| 40 "-f", | 43 "-f", |
| 41 "FETCH_HEAD" | 44 "FETCH_HEAD" |
| 42 ], | 45 ], |
| 43 "cwd": "[SLAVE_BUILD]\\src", | 46 "cwd": "[SLAVE_BUILD]\\src", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 ], | 181 ], |
| 179 "cwd": "[SLAVE_BUILD]\\src", | 182 "cwd": "[SLAVE_BUILD]\\src", |
| 180 "name": "git bundle" | 183 "name": "git bundle" |
| 181 }, | 184 }, |
| 182 { | 185 { |
| 183 "name": "$result", | 186 "name": "$result", |
| 184 "recipe_result": null, | 187 "recipe_result": null, |
| 185 "status_code": 0 | 188 "status_code": 0 |
| 186 } | 189 } |
| 187 ] | 190 ] |
| OLD | NEW |