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