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 23 matching lines...) Expand all Loading... |
34 "cwd": "[SLAVE_BUILD]/src", | 34 "cwd": "[SLAVE_BUILD]/src", |
35 "name": "git checkout" | 35 "name": "git checkout" |
36 }, | 36 }, |
37 { | 37 { |
38 "cmd": [ | 38 "cmd": [ |
39 "git", | 39 "git", |
40 "rev-parse", | 40 "rev-parse", |
41 "HEAD" | 41 "HEAD" |
42 ], | 42 ], |
43 "cwd": "[SLAVE_BUILD]/src", | 43 "cwd": "[SLAVE_BUILD]/src", |
44 "name": "set got_revision", | 44 "name": "read revision", |
45 "stdout": "/path/to/tmp/", | 45 "stdout": "/path/to/tmp/", |
46 "~followup_annotations": [ | 46 "~followup_annotations": [ |
| 47 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@", |
47 "@@@SET_BUILD_PROPERTY@got_revision@\"deadbeef\"@@@" | 48 "@@@SET_BUILD_PROPERTY@got_revision@\"deadbeef\"@@@" |
48 ] | 49 ] |
49 }, | 50 }, |
50 { | 51 { |
51 "cmd": [ | 52 "cmd": [ |
52 "git", | 53 "git", |
53 "clean", | 54 "clean", |
54 "-f", | 55 "-f", |
55 "-d", | 56 "-d", |
56 "-x" | 57 "-x" |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 ], | 170 ], |
170 "cwd": "[SLAVE_BUILD]/src", | 171 "cwd": "[SLAVE_BUILD]/src", |
171 "name": "git bundle" | 172 "name": "git bundle" |
172 }, | 173 }, |
173 { | 174 { |
174 "name": "$result", | 175 "name": "$result", |
175 "recipe_result": null, | 176 "recipe_result": null, |
176 "status_code": 0 | 177 "status_code": 0 |
177 } | 178 } |
178 ] | 179 ] |
OLD | NEW |