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" |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 "cmd": [ | 152 "cmd": [ |
153 "git", | 153 "git", |
154 "status" | 154 "status" |
155 ], | 155 ], |
156 "cwd": "[SLAVE_BUILD]/src", | 156 "cwd": "[SLAVE_BUILD]/src", |
157 "name": "git status cannot_fail_build" | 157 "name": "git status cannot_fail_build" |
158 }, | 158 }, |
159 { | 159 { |
160 "cmd": [ | 160 "cmd": [ |
161 "git", | 161 "git", |
| 162 "new-branch", |
| 163 "refactor" |
| 164 ], |
| 165 "cwd": "[SLAVE_BUILD]/src", |
| 166 "env": { |
| 167 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 168 }, |
| 169 "name": "git new-branch refactor" |
| 170 }, |
| 171 { |
| 172 "cmd": [ |
| 173 "git", |
| 174 "new-branch", |
| 175 "feature", |
| 176 "--upstream", |
| 177 "refactor" |
| 178 ], |
| 179 "cwd": "[SLAVE_BUILD]/src", |
| 180 "env": { |
| 181 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 182 }, |
| 183 "name": "git new-branch feature" |
| 184 }, |
| 185 { |
| 186 "cmd": [ |
| 187 "git", |
162 "rebase", | 188 "rebase", |
163 "origin/master" | 189 "origin/master" |
164 ], | 190 ], |
165 "cwd": "[SLAVE_BUILD]/src", | 191 "cwd": "[SLAVE_BUILD]/src", |
166 "name": "my repo rebase" | 192 "name": "my repo rebase" |
167 }, | 193 }, |
168 { | 194 { |
169 "cmd": [ | 195 "cmd": [ |
170 "git", | 196 "git", |
171 "bundle", | 197 "bundle", |
172 "create", | 198 "create", |
173 "[SLAVE_BUILD]/all.bundle", | 199 "[SLAVE_BUILD]/all.bundle", |
174 "--all" | 200 "--all" |
175 ], | 201 ], |
176 "cwd": "[SLAVE_BUILD]/src", | 202 "cwd": "[SLAVE_BUILD]/src", |
177 "name": "git bundle" | 203 "name": "git bundle" |
178 }, | 204 }, |
179 { | 205 { |
180 "name": "$result", | 206 "name": "$result", |
181 "recipe_result": null, | 207 "recipe_result": null, |
182 "status_code": 0 | 208 "status_code": 0 |
183 } | 209 } |
184 ] | 210 ] |
OLD | NEW |