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 21 matching lines...) Expand all Loading... |
32 "checkout", | 32 "checkout", |
33 "-f", | 33 "-f", |
34 "FETCH_HEAD" | 34 "FETCH_HEAD" |
35 ], | 35 ], |
36 "cwd": "[SLAVE_BUILD]\\src", | 36 "cwd": "[SLAVE_BUILD]\\src", |
37 "name": "git checkout" | 37 "name": "git checkout" |
38 }, | 38 }, |
39 { | 39 { |
40 "cmd": [ | 40 "cmd": [ |
41 "[DEPOT_TOOLS]\\git.bat", | 41 "[DEPOT_TOOLS]\\git.bat", |
| 42 "rev-parse", |
| 43 "HEAD" |
| 44 ], |
| 45 "cwd": "[SLAVE_BUILD]\\src", |
| 46 "name": "read revision", |
| 47 "stdout": "/path/to/tmp/", |
| 48 "~followup_annotations": [ |
| 49 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
| 50 ] |
| 51 }, |
| 52 { |
| 53 "cmd": [ |
| 54 "[DEPOT_TOOLS]\\git.bat", |
42 "clean", | 55 "clean", |
43 "-f", | 56 "-f", |
44 "-d", | 57 "-d", |
45 "-x" | 58 "-x" |
46 ], | 59 ], |
47 "cwd": "[SLAVE_BUILD]\\src", | 60 "cwd": "[SLAVE_BUILD]\\src", |
48 "name": "git clean" | 61 "name": "git clean" |
49 }, | 62 }, |
50 { | 63 { |
51 "cmd": [ | 64 "cmd": [ |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 ], | 171 ], |
159 "cwd": "[SLAVE_BUILD]\\src", | 172 "cwd": "[SLAVE_BUILD]\\src", |
160 "name": "git bundle" | 173 "name": "git bundle" |
161 }, | 174 }, |
162 { | 175 { |
163 "name": "$result", | 176 "name": "$result", |
164 "recipe_result": null, | 177 "recipe_result": null, |
165 "status_code": 0 | 178 "status_code": 0 |
166 } | 179 } |
167 ] | 180 ] |
OLD | NEW |