Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Side by Side Diff: scripts/slave/recipes/webrtc/libfuzzer.expected/full_tryserver_webrtc_linux_libfuzzer_rel.json

Issue 2480193002: Stop to use contextmanager for goma.build_with_goma (Closed)
Patch Set: update Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py", 6 "RECIPE_MODULE[depot_tools::bot_update]/resources/bot_update.py",
7 "--spec", 7 "--spec",
8 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/external/webrtc'} , {'deps_file': 'DEPS', 'managed': True, 'name': 'webrtc-limited', 'url': 'https ://chrome-internal.googlesource.com/chrome/deps/webrtc-limited'}]", 8 "cache_dir = '[GIT_CACHE]'\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'name': 'src', 'url': 'https://chromium.googlesource.com/external/webrtc'} , {'deps_file': 'DEPS', 'managed': True, 'name': 'webrtc-limited', 'url': 'https ://chrome-internal.googlesource.com/chrome/deps/webrtc-limited'}]",
9 "--patch_root", 9 "--patch_root",
10 "src", 10 "src",
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 "name": "calculate targets", 157 "name": "calculate targets",
158 "stdout": "/path/to/tmp/", 158 "stdout": "/path/to/tmp/",
159 "~followup_annotations": [ 159 "~followup_annotations": [
160 "@@@STEP_LOG_LINE@targets@target1@@@", 160 "@@@STEP_LOG_LINE@targets@target1@@@",
161 "@@@STEP_LOG_LINE@targets@target2@@@", 161 "@@@STEP_LOG_LINE@targets@target2@@@",
162 "@@@STEP_LOG_LINE@targets@target3@@@", 162 "@@@STEP_LOG_LINE@targets@target3@@@",
163 "@@@STEP_LOG_END@targets@@@" 163 "@@@STEP_LOG_END@targets@@@"
164 ] 164 ]
165 }, 165 },
166 { 166 {
167 "cmd": [
168 "python",
169 "-u",
170 "\nimport multiprocessing\nimport sys\n\njob_limit = 200\nif sys.platform. startswith('linux'):\n # Use 80 for linux not to load goma backend.\n job_limi t = 80\n\ntry:\n jobs = min(job_limit, multiprocessing.cpu_count() * 10)\nexcep t NotImplementedError:\n jobs = 50\n\nprint jobs\n"
171 ],
172 "name": "calculate the number of recommended jobs",
173 "stdout": "/path/to/tmp/",
174 "~followup_annotations": [
175 "@@@STEP_LOG_LINE@python.inline@@@@",
176 "@@@STEP_LOG_LINE@python.inline@import multiprocessing@@@",
177 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
178 "@@@STEP_LOG_LINE@python.inline@@@@",
179 "@@@STEP_LOG_LINE@python.inline@job_limit = 200@@@",
180 "@@@STEP_LOG_LINE@python.inline@if sys.platform.startswith('linux'):@@@",
181 "@@@STEP_LOG_LINE@python.inline@ # Use 80 for linux not to load goma back end.@@@",
182 "@@@STEP_LOG_LINE@python.inline@ job_limit = 80@@@",
183 "@@@STEP_LOG_LINE@python.inline@@@@",
184 "@@@STEP_LOG_LINE@python.inline@try:@@@",
185 "@@@STEP_LOG_LINE@python.inline@ jobs = min(job_limit, multiprocessing.cp u_count() * 10)@@@",
186 "@@@STEP_LOG_LINE@python.inline@except NotImplementedError:@@@",
187 "@@@STEP_LOG_LINE@python.inline@ jobs = 50@@@",
188 "@@@STEP_LOG_LINE@python.inline@@@@",
189 "@@@STEP_LOG_LINE@python.inline@print jobs@@@",
190 "@@@STEP_LOG_END@python.inline@@@"
191 ]
192 },
193 {
194 "cmd": [], 167 "cmd": [],
195 "name": "preprocess_for_goma" 168 "name": "preprocess_for_goma"
196 }, 169 },
197 { 170 {
198 "cmd": [ 171 "cmd": [
199 "python", 172 "python",
200 "-u", 173 "-u",
201 "[CACHE]/cipd/goma/goma_ctl.py", 174 "[CACHE]/cipd/goma/goma_ctl.py",
202 "restart" 175 "restart"
203 ], 176 ],
(...skipping 22 matching lines...) Expand all
226 "env": { 199 "env": {
227 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json" 200 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json"
228 }, 201 },
229 "name": "preprocess_for_goma.start cloudtail", 202 "name": "preprocess_for_goma.start cloudtail",
230 "~followup_annotations": [ 203 "~followup_annotations": [
231 "@@@STEP_NEST_LEVEL@1@@@" 204 "@@@STEP_NEST_LEVEL@1@@@"
232 ] 205 ]
233 }, 206 },
234 { 207 {
235 "cmd": [ 208 "cmd": [
209 "python",
210 "-u",
211 "\nimport multiprocessing\nimport sys\n\njob_limit = 200\nif sys.platform. startswith('linux'):\n # Use 80 for linux not to load goma backend.\n job_limi t = 80\n\ntry:\n jobs = min(job_limit, multiprocessing.cpu_count() * 10)\nexcep t NotImplementedError:\n jobs = 50\n\nprint jobs\n"
212 ],
213 "name": "calculate the number of recommended jobs",
214 "stdout": "/path/to/tmp/",
215 "~followup_annotations": [
216 "@@@STEP_LOG_LINE@python.inline@@@@",
217 "@@@STEP_LOG_LINE@python.inline@import multiprocessing@@@",
218 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
219 "@@@STEP_LOG_LINE@python.inline@@@@",
220 "@@@STEP_LOG_LINE@python.inline@job_limit = 200@@@",
221 "@@@STEP_LOG_LINE@python.inline@if sys.platform.startswith('linux'):@@@",
222 "@@@STEP_LOG_LINE@python.inline@ # Use 80 for linux not to load goma back end.@@@",
223 "@@@STEP_LOG_LINE@python.inline@ job_limit = 80@@@",
224 "@@@STEP_LOG_LINE@python.inline@@@@",
225 "@@@STEP_LOG_LINE@python.inline@try:@@@",
226 "@@@STEP_LOG_LINE@python.inline@ jobs = min(job_limit, multiprocessing.cp u_count() * 10)@@@",
227 "@@@STEP_LOG_LINE@python.inline@except NotImplementedError:@@@",
228 "@@@STEP_LOG_LINE@python.inline@ jobs = 50@@@",
229 "@@@STEP_LOG_LINE@python.inline@@@@",
230 "@@@STEP_LOG_LINE@python.inline@print jobs@@@",
231 "@@@STEP_LOG_END@python.inline@@@"
232 ]
233 },
234 {
235 "cmd": [
236 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", 236 "RECIPE_PACKAGE_REPO[depot_tools]/ninja",
237 "-w", 237 "-w",
238 "dupbuild=err", 238 "dupbuild=err",
239 "-C", 239 "-C",
240 "[SLAVE_BUILD]/src/out/Release", 240 "[SLAVE_BUILD]/src/out/Release",
241 "-j",
242 "50",
243 "target1", 241 "target1",
244 "target2", 242 "target2",
245 "target3" 243 "target3",
244 "-j",
245 "50"
246 ], 246 ],
247 "env": { 247 "env": {
248 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json" 248 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json"
249 }, 249 },
250 "name": "compile with ninja" 250 "name": "compile with ninja"
251 }, 251 },
252 { 252 {
253 "cmd": [], 253 "cmd": [],
254 "name": "postprocess_for_goma" 254 "name": "postprocess_for_goma"
255 }, 255 },
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 "-u", 305 "-u",
306 "RECIPE_PACKAGE_REPO[build]/scripts/slave/upload_goma_logs.py", 306 "RECIPE_PACKAGE_REPO[build]/scripts/slave/upload_goma_logs.py",
307 "--upload-compiler-proxy-info", 307 "--upload-compiler-proxy-info",
308 "--json-status", 308 "--json-status",
309 "[CACHE]/cipd/goma/jsonstatus", 309 "[CACHE]/cipd/goma/jsonstatus",
310 "--ninja-log-outdir", 310 "--ninja-log-outdir",
311 "[SLAVE_BUILD]/src/out/Release", 311 "[SLAVE_BUILD]/src/out/Release",
312 "--ninja-log-compiler", 312 "--ninja-log-compiler",
313 "goma", 313 "goma",
314 "--ninja-log-command", 314 "--ninja-log-command",
315 "['RECIPE_PACKAGE_REPO[depot_tools]/ninja', '-w', 'dupbuild=err', '-C', '[ SLAVE_BUILD]/src/out/Release', '-j', 50, 'target1', 'target2', 'target3']", 315 "['RECIPE_PACKAGE_REPO[depot_tools]/ninja', '-w', 'dupbuild=err', '-C', '[ SLAVE_BUILD]/src/out/Release', 'target1', 'target2', 'target3', '-j', 50]",
316 "--ninja-log-exit-status", 316 "--ninja-log-exit-status",
317 "0", 317 "0",
318 "--buildbot-buildername", 318 "--buildbot-buildername",
319 "linux_libfuzzer_rel", 319 "linux_libfuzzer_rel",
320 "--buildbot-mastername", 320 "--buildbot-mastername",
321 "tryserver.webrtc", 321 "tryserver.webrtc",
322 "--buildbot-slavename", 322 "--buildbot-slavename",
323 "TestSlavename" 323 "TestSlavename"
324 ], 324 ],
325 "env": { 325 "env": {
(...skipping 17 matching lines...) Expand all
343 "~followup_annotations": [ 343 "~followup_annotations": [
344 "@@@STEP_NEST_LEVEL@1@@@" 344 "@@@STEP_NEST_LEVEL@1@@@"
345 ] 345 ]
346 }, 346 },
347 { 347 {
348 "name": "$result", 348 "name": "$result",
349 "recipe_result": null, 349 "recipe_result": null,
350 "status_code": 0 350 "status_code": 0
351 } 351 }
352 ] 352 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698