| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", | 6 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", |
| 7 "--show-path", | 7 "--show-path", |
| 8 "python", | 8 "python", |
| 9 "RECIPE_PACKAGE_REPO[build]/scripts/slave/cleanup_temp.py" | 9 "RECIPE_PACKAGE_REPO[build]/scripts/slave/cleanup_temp.py" |
| 10 ], | 10 ], |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "cmd": [ | 122 "cmd": [ |
| 123 "python", | 123 "python", |
| 124 "-u", | 124 "-u", |
| 125 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", | 125 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", |
| 126 "runhooks" | 126 "runhooks" |
| 127 ], | 127 ], |
| 128 "cwd": "[SLAVE_BUILD]/src", | 128 "cwd": "[SLAVE_BUILD]/src", |
| 129 "env": { | 129 "env": { |
| 130 "FORCE_MAC_TOOLCHAIN": "1", | 130 "FORCE_MAC_TOOLCHAIN": "1", |
| 131 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", | 131 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json", |
| 132 "GYP_CHROMIUM_NO_ACTION": "1", | |
| 133 "GYP_DEFINES": "clang=1 component=shared_library gomadir='[CACHE]/cipd/gom
a' target_arch=x64 use_goma=1", | 132 "GYP_DEFINES": "clang=1 component=shared_library gomadir='[CACHE]/cipd/gom
a' target_arch=x64 use_goma=1", |
| 134 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" | 133 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" |
| 135 }, | 134 }, |
| 136 "name": "gclient runhooks" | 135 "name": "gclient runhooks" |
| 137 }, | 136 }, |
| 138 { | 137 { |
| 139 "cmd": [ | |
| 140 "python", | |
| 141 "-u", | |
| 142 "RECIPE_PACKAGE_REPO[depot_tools]/gn.py", | |
| 143 "--root=[SLAVE_BUILD]/src", | |
| 144 "gen", | |
| 145 "//out/Debug", | |
| 146 "--args=is_debug=true target_cpu=\"x64\" use_goma=true goma_dir=\"[CACHE]/
cipd/goma\"" | |
| 147 ], | |
| 148 "cwd": "[SLAVE_BUILD]/src", | |
| 149 "name": "gn" | |
| 150 }, | |
| 151 { | |
| 152 "allow_subannotations": true, | 138 "allow_subannotations": true, |
| 153 "cmd": [ | 139 "cmd": [ |
| 154 "python", | 140 "python", |
| 155 "-u", | 141 "-u", |
| 156 "RECIPE_PACKAGE_REPO[build]/scripts/slave/clang_revision.py", | 142 "RECIPE_PACKAGE_REPO[build]/scripts/slave/clang_revision.py", |
| 157 "--src-dir", | 143 "--src-dir", |
| 158 "[SLAVE_BUILD]/src", | 144 "[SLAVE_BUILD]/src", |
| 159 "--output-json", | 145 "--output-json", |
| 160 "/path/to/tmp/json" | 146 "/path/to/tmp/json" |
| 161 ], | 147 ], |
| (...skipping 21 matching lines...) Expand all Loading... |
| 183 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", | 169 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", |
| 184 "--ninja-path", | 170 "--ninja-path", |
| 185 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", | 171 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", |
| 186 "--target", | 172 "--target", |
| 187 "Debug", | 173 "Debug", |
| 188 "--src-dir", | 174 "--src-dir", |
| 189 "[SLAVE_BUILD]/src", | 175 "[SLAVE_BUILD]/src", |
| 190 "--goma-cache-dir", | 176 "--goma-cache-dir", |
| 191 "[GOMA_CACHE]", | 177 "[GOMA_CACHE]", |
| 192 "--buildbot-buildername", | 178 "--buildbot-buildername", |
| 193 "Mac64 Debug (GN)", | 179 "Mac64 Debug (GYP)", |
| 194 "--buildbot-mastername", | 180 "--buildbot-mastername", |
| 195 "client.libyuv", | 181 "client.libyuv", |
| 196 "--buildbot-slavename", | 182 "--buildbot-slavename", |
| 197 "slavename", | 183 "slavename", |
| 198 "--goma-deps-cache-file", | 184 "--goma-deps-cache-file", |
| 199 "Mac64_Debug__GN_.gomadeps", | 185 "Mac64_Debug__GYP_.gomadeps", |
| 200 "--compiler", | 186 "--compiler", |
| 201 "goma-clang", | 187 "goma-clang", |
| 202 "--goma-jsonstatus", | 188 "--goma-jsonstatus", |
| 203 "/path/to/tmp/json", | 189 "/path/to/tmp/json", |
| 204 "--goma-service-account-json-file", | 190 "--goma-service-account-json-file", |
| 205 "/creds/service_accounts/service-account-goma-client.json", | 191 "/creds/service_accounts/service-account-goma-client.json", |
| 206 "--goma-dir", | 192 "--goma-dir", |
| 207 "[CACHE]/cipd/goma", | 193 "[CACHE]/cipd/goma", |
| 208 "--", | 194 "--" |
| 209 "all" | |
| 210 ], | 195 ], |
| 211 "env": { | 196 "env": { |
| 212 "FORCE_MAC_TOOLCHAIN": "1", | 197 "FORCE_MAC_TOOLCHAIN": "1", |
| 213 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" | 198 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account
-goma-client.json" |
| 214 }, | 199 }, |
| 215 "name": "compile", | 200 "name": "compile", |
| 216 "~followup_annotations": [ | 201 "~followup_annotations": [ |
| 217 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", | 202 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", |
| 218 "@@@STEP_LOG_END@json.output (invalid)@@@" | 203 "@@@STEP_LOG_END@json.output (invalid)@@@" |
| 219 ] | 204 ] |
| 220 }, | 205 }, |
| 221 { | 206 { |
| 222 "name": "$result", | 207 "name": "$result", |
| 223 "recipe_result": null, | 208 "recipe_result": null, |
| 224 "status_code": 0 | 209 "status_code": 0 |
| 225 } | 210 } |
| 226 ] | 211 ] |
| OLD | NEW |