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