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 Snapshot Builder", | 10 "Linux Snapshot Builder", |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 { | 113 { |
114 "cmd": [ | 114 "cmd": [ |
115 "python", | 115 "python", |
116 "-u", | 116 "-u", |
117 "[BUILD]/scripts/slave/cleanup_temp.py" | 117 "[BUILD]/scripts/slave/cleanup_temp.py" |
118 ], | 118 ], |
119 "cwd": "[SLAVE_BUILD]", | 119 "cwd": "[SLAVE_BUILD]", |
120 "name": "cleanup_temp" | 120 "name": "cleanup_temp" |
121 }, | 121 }, |
122 { | 122 { |
123 "name": "$final_result", | 123 "cmd": [ |
124 "reason": "Misconfigured bot: no compile targets", | 124 "python", |
125 "status_code": 1 | 125 "-u", |
| 126 "[BUILD]/scripts/slave/compile.py", |
| 127 "--target", |
| 128 "Release", |
| 129 "--src-dir", |
| 130 "[SLAVE_BUILD]/src", |
| 131 "--build-tool", |
| 132 "ninja", |
| 133 "--compiler", |
| 134 "goma", |
| 135 "--goma-dir", |
| 136 "[BUILD]/goma", |
| 137 "--", |
| 138 "All", |
| 139 "chromium_builder_tests" |
| 140 ], |
| 141 "cwd": "[SLAVE_BUILD]", |
| 142 "name": "compile" |
| 143 }, |
| 144 { |
| 145 "cmd": [ |
| 146 "python", |
| 147 "-u", |
| 148 "[BUILD]/scripts/slave/chromium/archive_build.py", |
| 149 "--target", |
| 150 "Release", |
| 151 "--factory-properties", |
| 152 "{\"gclient_env\": {\"GYP_DEFINES\": \"component=static_library gomadir='[
BUILD]/goma' target_arch=x64 use_goma=1\"}, \"gs_acl\": \"public-read\", \"gs_bu
cket\": \"gs://chromium-v8-snapshots\"}", |
| 153 "--build-properties", |
| 154 "{\"got_cr_revision\": \"f27fede2220bcd326aee3e86ddfd4ebd0fe58cb9\", \"got
_cr_revision_cp\": \"refs/heads/master@{#170242}\", \"got_nacl_revision\": \"d99
8e125e8253980d76e269b7982aeeefc1b9b50\", \"got_nacl_revision_cp\": \"refs/heads/
master@{#274981}\", \"got_revision\": \"801ada225ddc271c132c3a35f03975671d43e399
\", \"got_revision_cp\": \"refs/heads/master@{#43426}\", \"got_swarming_client_r
evision\": \"a0ee5d99f1d4b38ddaa4c759c837980b63b99566\", \"got_swarming_client_r
evision_cp\": \"refs/heads/master@{#276089}\", \"got_webrtc_revision\": \"0f9062
8433546e61d9268596da93418c623137f4\", \"got_webrtc_revision_cp\": \"refs/heads/m
aster@{#120644}\"}" |
| 155 ], |
| 156 "cwd": "[SLAVE_BUILD]", |
| 157 "name": "archive build" |
126 } | 158 } |
127 ] | 159 ] |
OLD | NEW |