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