| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "checkout", | 103 "checkout", |
| 104 "-f", | 104 "-f", |
| 105 "FETCH_HEAD" | 105 "FETCH_HEAD" |
| 106 ], | 106 ], |
| 107 "cwd": "[SLAVE_BUILD]/src", | 107 "cwd": "[SLAVE_BUILD]/src", |
| 108 "name": "git checkout" | 108 "name": "git checkout" |
| 109 }, | 109 }, |
| 110 { | 110 { |
| 111 "cmd": [ | 111 "cmd": [ |
| 112 "git", | 112 "git", |
| 113 "rev-parse", |
| 114 "HEAD" |
| 115 ], |
| 116 "cwd": "[SLAVE_BUILD]/src", |
| 117 "name": "read revision", |
| 118 "stdout": "/path/to/tmp/", |
| 119 "~followup_annotations": [ |
| 120 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
| 121 ] |
| 122 }, |
| 123 { |
| 124 "cmd": [ |
| 125 "git", |
| 113 "clean", | 126 "clean", |
| 114 "-f", | 127 "-f", |
| 115 "-d", | 128 "-d", |
| 116 "-x" | 129 "-x" |
| 117 ], | 130 ], |
| 118 "cwd": "[SLAVE_BUILD]/src", | 131 "cwd": "[SLAVE_BUILD]/src", |
| 119 "name": "git clean" | 132 "name": "git clean" |
| 120 }, | 133 }, |
| 121 { | 134 { |
| 122 "cmd": [ | 135 "cmd": [ |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 ], | 242 ], |
| 230 "cwd": "[SLAVE_BUILD]/src", | 243 "cwd": "[SLAVE_BUILD]/src", |
| 231 "name": "git bundle" | 244 "name": "git bundle" |
| 232 }, | 245 }, |
| 233 { | 246 { |
| 234 "name": "$result", | 247 "name": "$result", |
| 235 "recipe_result": null, | 248 "recipe_result": null, |
| 236 "status_code": 0 | 249 "status_code": 0 |
| 237 } | 250 } |
| 238 ] | 251 ] |
| OLD | NEW |