| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\git_bootstrap.py", | 6 "RECIPE_PACKAGE_REPO[depot_tools]\\bootstrap\\win\\git_bootstrap.py", |
| 7 "--verbose" | 7 "--verbose" |
| 8 ], | 8 ], |
| 9 "cwd": "RECIPE_PACKAGE_REPO[depot_tools]", | 9 "cwd": "RECIPE_PACKAGE_REPO[depot_tools]", |
| 10 "name": "ensure git tooling on windows", | 10 "name": "ensure git tooling on windows", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 "cmd": [ | 161 "cmd": [ |
| 162 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 162 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
| 163 "status" | 163 "status" |
| 164 ], | 164 ], |
| 165 "cwd": "[SLAVE_BUILD]\\src", | 165 "cwd": "[SLAVE_BUILD]\\src", |
| 166 "name": "git status cannot_fail_build" | 166 "name": "git status cannot_fail_build" |
| 167 }, | 167 }, |
| 168 { | 168 { |
| 169 "cmd": [ | 169 "cmd": [ |
| 170 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 170 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
| 171 "new-branch", |
| 172 "refactor" |
| 173 ], |
| 174 "cwd": "[SLAVE_BUILD]\\src", |
| 175 "env": { |
| 176 "PATH": "RECIPE_PACKAGE_REPO[depot_tools];%(PATH)s" |
| 177 }, |
| 178 "name": "git new-branch refactor" |
| 179 }, |
| 180 { |
| 181 "cmd": [ |
| 182 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
| 183 "new-branch", |
| 184 "feature", |
| 185 "--upstream", |
| 186 "refactor" |
| 187 ], |
| 188 "cwd": "[SLAVE_BUILD]\\src", |
| 189 "env": { |
| 190 "PATH": "RECIPE_PACKAGE_REPO[depot_tools];%(PATH)s" |
| 191 }, |
| 192 "name": "git new-branch feature" |
| 193 }, |
| 194 { |
| 195 "cmd": [ |
| 196 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
| 171 "rebase", | 197 "rebase", |
| 172 "origin/master" | 198 "origin/master" |
| 173 ], | 199 ], |
| 174 "cwd": "[SLAVE_BUILD]\\src", | 200 "cwd": "[SLAVE_BUILD]\\src", |
| 175 "name": "my repo rebase" | 201 "name": "my repo rebase" |
| 176 }, | 202 }, |
| 177 { | 203 { |
| 178 "cmd": [ | 204 "cmd": [ |
| 179 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", | 205 "RECIPE_PACKAGE_REPO[depot_tools]\\git.bat", |
| 180 "bundle", | 206 "bundle", |
| 181 "create", | 207 "create", |
| 182 "[SLAVE_BUILD]\\all.bundle", | 208 "[SLAVE_BUILD]\\all.bundle", |
| 183 "--all" | 209 "--all" |
| 184 ], | 210 ], |
| 185 "cwd": "[SLAVE_BUILD]\\src", | 211 "cwd": "[SLAVE_BUILD]\\src", |
| 186 "name": "git bundle" | 212 "name": "git bundle" |
| 187 }, | 213 }, |
| 188 { | 214 { |
| 189 "name": "$result", | 215 "name": "$result", |
| 190 "recipe_result": null, | 216 "recipe_result": null, |
| 191 "status_code": 0 | 217 "status_code": 0 |
| 192 } | 218 } |
| 193 ] | 219 ] |
| OLD | NEW |