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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 { | 121 { |
122 "cmd": [ | 122 "cmd": [ |
123 "python", | 123 "python", |
124 "-u", | 124 "-u", |
125 "[BUILD]/scripts/slave/cleanup_temp.py" | 125 "[BUILD]/scripts/slave/cleanup_temp.py" |
126 ], | 126 ], |
127 "cwd": "[SLAVE_BUILD]", | 127 "cwd": "[SLAVE_BUILD]", |
128 "name": "cleanup_temp" | 128 "name": "cleanup_temp" |
129 }, | 129 }, |
130 { | 130 { |
131 "name": "$final_result", | 131 "allow_subannotations": true, |
132 "reason": "Misconfigured bot: no compile targets", | 132 "cmd": [ |
133 "status_code": 1 | 133 "python", |
| 134 "-u", |
| 135 "[BUILD]/scripts/slave/clang_revision.py", |
| 136 "--src-dir", |
| 137 "[SLAVE_BUILD]/src", |
| 138 "--output-json", |
| 139 "/path/to/tmp/json" |
| 140 ], |
| 141 "cwd": "[SLAVE_BUILD]", |
| 142 "name": "clang_revision", |
| 143 "~followup_annotations": [ |
| 144 "@@@STEP_LOG_LINE@json.output@{@@@", |
| 145 "@@@STEP_LOG_LINE@json.output@ \"clang_revision\": \"123456-7\"@@@", |
| 146 "@@@STEP_LOG_LINE@json.output@}@@@", |
| 147 "@@@STEP_LOG_END@json.output@@@" |
| 148 ] |
| 149 }, |
| 150 { |
| 151 "cmd": [ |
| 152 "python", |
| 153 "-u", |
| 154 "[BUILD]/scripts/slave/compile.py", |
| 155 "--target", |
| 156 "Release", |
| 157 "--src-dir", |
| 158 "[SLAVE_BUILD]/src", |
| 159 "--build-tool", |
| 160 "ninja", |
| 161 "--compiler", |
| 162 "clang", |
| 163 "--", |
| 164 "All", |
| 165 "chromium_builder_tests" |
| 166 ], |
| 167 "cwd": "[SLAVE_BUILD]", |
| 168 "name": "compile" |
134 } | 169 } |
135 ] | 170 ] |
OLD | NEW |