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