| 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 "client.v8.fyi", | 8 "client.v8.fyi", |
| 9 "--builder", | 9 "--builder", |
| 10 "Linux ASAN Builder", | 10 "Linux ASAN Builder", |
| (...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 "name": "clang_revision", | |
| 166 "~followup_annotations": [ | |
| 167 "@@@STEP_LOG_LINE@json.output@{@@@", | |
| 168 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", | |
| 169 "@@@STEP_LOG_LINE@json.output@}@@@", | |
| 170 "@@@STEP_LOG_END@json.output@@@" | |
| 171 ] | |
| 172 }, | |
| 173 { | |
| 174 "cmd": [ | 154 "cmd": [ |
| 175 "python", | 155 "python", |
| 176 "-u", | 156 "-u", |
| 177 "[BUILD]/scripts/slave/compile.py", | 157 "import sys; sys.exit(1)" |
| 178 "--target", | |
| 179 "Release", | |
| 180 "--src-dir", | |
| 181 "[SLAVE_BUILD]/src", | |
| 182 "--build-tool", | |
| 183 "ninja", | |
| 184 "--compiler", | |
| 185 "goma-clang", | |
| 186 "--goma-jsonstatus", | |
| 187 "/path/to/tmp/json", | |
| 188 "--goma-dir", | |
| 189 "[BUILD]/goma", | |
| 190 "--" | |
| 191 ], | 158 ], |
| 192 "cwd": "[SLAVE_BUILD]", | 159 "cwd": "[SLAVE_BUILD]", |
| 193 "name": "compile", | 160 "name": "compile", |
| 194 "~followup_annotations": [ | 161 "~followup_annotations": [ |
| 195 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", | 162 "step returned non-zero exit code: 1", |
| 196 "@@@STEP_LOG_END@json.output (invalid)@@@" | 163 "@@@STEP_TEXT@Please add explicit compile targets for the build@@@", |
| 197 ] | 164 "@@@STEP_FAILURE@@@" |
| 198 }, | |
| 199 { | |
| 200 "allow_subannotations": true, | |
| 201 "cmd": [ | |
| 202 "python", | |
| 203 "-u", | |
| 204 "[BUILD]/scripts/slave/zip_build.py", | |
| 205 "--target", | |
| 206 "Release", | |
| 207 "--build-url", | |
| 208 "gs://chromium-v8/client.v8.fyi/Linux ASAN Builder", | |
| 209 "--build_revision", | |
| 210 "801ada225ddc271c132c3a35f03975671d43e399", | |
| 211 "--factory-properties", | |
| 212 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"Linux ASAN Builder\", \"buildnumber\": 571, \"mastername\": \"c
lient.v8.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"revisi
on\": \"22135\", \"slavename\": \"TestSlavename\", \"workdir\": \"/path/to/workd
ir/TestSlavename\"}", | |
| 213 "--build-properties", | |
| 214 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"Linux ASAN Builder\", \"buildnumber\": 571, \"mastername\": \"c
lient.v8.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"revisi
on\": \"22135\", \"slavename\": \"TestSlavename\", \"workdir\": \"/path/to/workd
ir/TestSlavename\"}" | |
| 215 ], | |
| 216 "cwd": "[SLAVE_BUILD]", | |
| 217 "name": "package build" | |
| 218 }, | |
| 219 { | |
| 220 "cmd": [], | |
| 221 "cwd": "[SLAVE_BUILD]", | |
| 222 "name": "trigger", | |
| 223 "trigger_specs": [ | |
| 224 { | |
| 225 "builder_name": "Linux ASan LSan Tests (1)" | |
| 226 } | |
| 227 ], | |
| 228 "~followup_annotations": [ | |
| 229 "@@@STEP_TEXT@Linux ASan LSan Tests (1)@@@" | |
| 230 ] | 165 ] |
| 231 }, | 166 }, |
| 232 { | 167 { |
| 233 "name": "$result", | 168 "name": "$result", |
| 234 "recipe_result": null, | 169 "reason": "Step('compile') failed with return_code 1", |
| 235 "status_code": 0 | 170 "status_code": 1 |
| 236 } | 171 } |
| 237 ] | 172 ] |
| OLD | NEW |