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" |
11 ], | 11 ], |
12 "name": "git setup" | 12 "name": "git setup" |
13 }, | 13 }, |
14 { | 14 { |
15 "cmd": [ | 15 "cmd": [ |
16 "git", | 16 "git", |
17 "retry", | 17 "retry", |
18 "fetch", | 18 "fetch", |
19 "origin", | 19 "origin", |
20 "master", | 20 "master", |
21 "--recurse-submodules" | 21 "--recurse-submodules" |
22 ], | 22 ], |
23 "cwd": "[SLAVE_BUILD]/src", | 23 "cwd": "[SLAVE_BUILD]/src", |
| 24 "env": { |
| 25 "PATH": "RECIPE_PACKAGE_REPO[depot_tools]:%(PATH)s" |
| 26 }, |
24 "name": "git fetch" | 27 "name": "git fetch" |
25 }, | 28 }, |
26 { | 29 { |
27 "cmd": [ | 30 "cmd": [ |
28 "git", | 31 "git", |
29 "checkout", | 32 "checkout", |
30 "-f", | 33 "-f", |
31 "FETCH_HEAD" | 34 "FETCH_HEAD" |
32 ], | 35 ], |
33 "cwd": "[SLAVE_BUILD]/src", | 36 "cwd": "[SLAVE_BUILD]/src", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 "@@@STEP_EXCEPTION@@@" | 148 "@@@STEP_EXCEPTION@@@" |
146 ] | 149 ] |
147 }, | 150 }, |
148 { | 151 { |
149 "name": "$result", | 152 "name": "$result", |
150 "reason": "Infra Failure: Step('git status can_fail_build') returned 1", | 153 "reason": "Infra Failure: Step('git status can_fail_build') returned 1", |
151 "recipe_result": null, | 154 "recipe_result": null, |
152 "status_code": 1 | 155 "status_code": 1 |
153 } | 156 } |
154 ] | 157 ] |
OLD | NEW |