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