| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]/scripts/slave/bot_update.py", | 6 "[BUILD]/scripts/slave/bot_update.py", |
| 7 "--master", | 7 "--master", |
| 8 "chromium.fyi", | 8 "chromium.fyi", |
| 9 "--builder", | 9 "--builder", |
| 10 "CFI Linux", | 10 "CFI Linux", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 { | 152 { |
| 153 "cmd": [ | 153 "cmd": [ |
| 154 "python", | 154 "python", |
| 155 "-u", | 155 "-u", |
| 156 "[BUILD]/scripts/slave/cleanup_temp.py" | 156 "[BUILD]/scripts/slave/cleanup_temp.py" |
| 157 ], | 157 ], |
| 158 "cwd": "[SLAVE_BUILD]", | 158 "cwd": "[SLAVE_BUILD]", |
| 159 "name": "cleanup_temp" | 159 "name": "cleanup_temp" |
| 160 }, | 160 }, |
| 161 { | 161 { |
| 162 "allow_subannotations": true, | |
| 163 "cmd": [ | |
| 164 "python", | |
| 165 "-u", | |
| 166 "[BUILD]/scripts/slave/clang_revision.py", | |
| 167 "--src-dir", | |
| 168 "[SLAVE_BUILD]/src", | |
| 169 "--output-json", | |
| 170 "/path/to/tmp/json" | |
| 171 ], | |
| 172 "cwd": "[SLAVE_BUILD]", | |
| 173 "name": "clang_revision", | |
| 174 "~followup_annotations": [ | |
| 175 "@@@STEP_LOG_LINE@json.output@{@@@", | |
| 176 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", | |
| 177 "@@@STEP_LOG_LINE@json.output@}@@@", | |
| 178 "@@@STEP_LOG_END@json.output@@@" | |
| 179 ] | |
| 180 }, | |
| 181 { | |
| 182 "cmd": [ | 162 "cmd": [ |
| 183 "python", | 163 "python", |
| 184 "-u", | 164 "-u", |
| 185 "[BUILD]/scripts/slave/compile.py", | 165 "import sys; sys.exit(1)" |
| 186 "--target", | |
| 187 "Release", | |
| 188 "--src-dir", | |
| 189 "[SLAVE_BUILD]/src", | |
| 190 "--build-tool", | |
| 191 "ninja", | |
| 192 "--compiler", | |
| 193 "clang", | |
| 194 "--", | |
| 195 "All", | |
| 196 "chromium_builder_tests" | |
| 197 ], | 166 ], |
| 198 "cwd": "[SLAVE_BUILD]", | 167 "cwd": "[SLAVE_BUILD]", |
| 199 "name": "compile" | 168 "name": "compile", |
| 169 "~followup_annotations": [ |
| 170 "step returned non-zero exit code: 1", |
| 171 "@@@STEP_TEXT@Please add explicit compile targets for the build@@@", |
| 172 "@@@STEP_FAILURE@@@" |
| 173 ] |
| 200 }, | 174 }, |
| 201 { | 175 { |
| 202 "name": "$result", | 176 "name": "$result", |
| 203 "recipe_result": null, | 177 "reason": "Step('compile') failed with return_code 1", |
| 204 "status_code": 0 | 178 "status_code": 1 |
| 205 } | 179 } |
| 206 ] | 180 ] |
| OLD | NEW |