| 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]/swarming.client", | 8 "[SLAVE_BUILD]/swarming.client", |
| 9 "--url", | 9 "--url", |
| 10 "https://chromium.googlesource.com/external/swarming.client.git" | 10 "https://chromium.googlesource.com/external/swarming.client.git" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "checkout", | 29 "checkout", |
| 30 "-f", | 30 "-f", |
| 31 "FETCH_HEAD" | 31 "FETCH_HEAD" |
| 32 ], | 32 ], |
| 33 "cwd": "[SLAVE_BUILD]/swarming.client", | 33 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 34 "name": "git checkout (swarming_client)" | 34 "name": "git checkout (swarming_client)" |
| 35 }, | 35 }, |
| 36 { | 36 { |
| 37 "cmd": [ | 37 "cmd": [ |
| 38 "git", | 38 "git", |
| 39 "rev-parse", |
| 40 "HEAD" |
| 41 ], |
| 42 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 43 "name": "read revision", |
| 44 "stdout": "/path/to/tmp/", |
| 45 "~followup_annotations": [ |
| 46 "@@@STEP_TEXT@<br/>checked out 'deadbeef'<br/>@@@" |
| 47 ] |
| 48 }, |
| 49 { |
| 50 "cmd": [ |
| 51 "git", |
| 39 "clean", | 52 "clean", |
| 40 "-f", | 53 "-f", |
| 41 "-d", | 54 "-d", |
| 42 "-x" | 55 "-x" |
| 43 ], | 56 ], |
| 44 "cwd": "[SLAVE_BUILD]/swarming.client", | 57 "cwd": "[SLAVE_BUILD]/swarming.client", |
| 45 "name": "git clean (swarming_client)" | 58 "name": "git clean (swarming_client)" |
| 46 }, | 59 }, |
| 47 { | 60 { |
| 48 "cmd": [ | 61 "cmd": [ |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "@@@STEP_TEXT@Expecting at least v20.0.0, got v0.4.4@@@", | 117 "@@@STEP_TEXT@Expecting at least v20.0.0, got v0.4.4@@@", |
| 105 "@@@STEP_FAILURE@@@" | 118 "@@@STEP_FAILURE@@@" |
| 106 ] | 119 ] |
| 107 }, | 120 }, |
| 108 { | 121 { |
| 109 "name": "$result", | 122 "name": "$result", |
| 110 "reason": "Expecting at least v20.0.0, got v0.4.4", | 123 "reason": "Expecting at least v20.0.0, got v0.4.4", |
| 111 "status_code": 1 | 124 "status_code": 1 |
| 112 } | 125 } |
| 113 ] | 126 ] |
| OLD | NEW |