OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "python", | 4 "python", |
5 "-u", | 5 "-u", |
6 "[BUILD]\\scripts\\slave\\kill_processes.py" | 6 "[BUILD]\\scripts\\slave\\kill_processes.py" |
7 ], | 7 ], |
8 "cwd": "[SLAVE_BUILD]", | 8 "cwd": "[SLAVE_BUILD]", |
9 "name": "taskkill" | 9 "name": "taskkill" |
10 }, | 10 }, |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 "--config-file", | 149 "--config-file", |
150 "[SLAVE_BUILD]\\src\\tools\\mb\\mb_config.pyl", | 150 "[SLAVE_BUILD]\\src\\tools\\mb\\mb_config.pyl", |
151 "--goma-dir", | 151 "--goma-dir", |
152 "[BUILD]\\goma", | 152 "[BUILD]\\goma", |
153 "//out/Debug_x64" | 153 "//out/Debug_x64" |
154 ], | 154 ], |
155 "cwd": "[SLAVE_BUILD]", | 155 "cwd": "[SLAVE_BUILD]", |
156 "name": "generate_build_files" | 156 "name": "generate_build_files" |
157 }, | 157 }, |
158 { | 158 { |
159 "name": "$final_result", | 159 "allow_subannotations": true, |
160 "reason": "Misconfigured bot: no compile targets", | 160 "cmd": [ |
161 "status_code": 1 | 161 "python", |
| 162 "-u", |
| 163 "[BUILD]\\scripts\\slave\\clang_revision.py", |
| 164 "--src-dir", |
| 165 "[SLAVE_BUILD]\\src", |
| 166 "--output-json", |
| 167 "/path/to/tmp/json" |
| 168 ], |
| 169 "cwd": "[SLAVE_BUILD]", |
| 170 "name": "clang_revision", |
| 171 "~followup_annotations": [ |
| 172 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 173 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", |
| 174 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 175 "@@@STEP_LOG_END@json.output@@@" |
| 176 ] |
| 177 }, |
| 178 { |
| 179 "cmd": [ |
| 180 "python", |
| 181 "-u", |
| 182 "[BUILD]\\scripts\\slave\\compile.py", |
| 183 "--target", |
| 184 "Debug_x64", |
| 185 "--src-dir", |
| 186 "[SLAVE_BUILD]\\src", |
| 187 "--build-tool", |
| 188 "ninja", |
| 189 "--compiler", |
| 190 "clang", |
| 191 "--" |
| 192 ], |
| 193 "cwd": "[SLAVE_BUILD]", |
| 194 "name": "compile" |
| 195 }, |
| 196 { |
| 197 "allow_subannotations": true, |
| 198 "cmd": [ |
| 199 "python", |
| 200 "-u", |
| 201 "[BUILD]\\scripts\\slave\\zip_build.py", |
| 202 "--target", |
| 203 "Debug_x64", |
| 204 "--build-url", |
| 205 "gs://chromium-fyi-archive/chromium.fyi/CrWinClang64(dbg)", |
| 206 "--build_revision", |
| 207 "f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9", |
| 208 "--factory-properties", |
| 209 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"CrWinClang64(dbg)\", \"buildnumber\": 571, \"mastername\": \"ch
romium.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavenam
e\": \"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}", |
| 210 "--build-properties", |
| 211 "{\"blamelist\": [\"cool_dev1337@chromium.org\", \"hax@chromium.org\"], \"
buildername\": \"CrWinClang64(dbg)\", \"buildnumber\": 571, \"mastername\": \"ch
romium.fyi\", \"parent_buildername\": null, \"recipe\": \"chromium\", \"slavenam
e\": \"TestSlavename\", \"workdir\": \"/path/to/workdir/TestSlavename\"}" |
| 212 ], |
| 213 "cwd": "[SLAVE_BUILD]", |
| 214 "name": "package build" |
| 215 }, |
| 216 { |
| 217 "cmd": [], |
| 218 "cwd": "[SLAVE_BUILD]", |
| 219 "name": "trigger", |
| 220 "trigger_specs": [ |
| 221 { |
| 222 "builder_name": "CrWinClang64(dbg) tester" |
| 223 } |
| 224 ], |
| 225 "~followup_annotations": [ |
| 226 "@@@STEP_TEXT@CrWinClang64(dbg) tester@@@" |
| 227 ] |
162 } | 228 } |
163 ] | 229 ] |
OLD | NEW |