OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # Sets up all the builders we want this buildbot master to run. | 5 # Sets up all the builders we want this buildbot master to run. |
6 | 6 |
7 | 7 |
8 #pylint: disable=C0301 | 8 #pylint: disable=C0301 |
9 | 9 |
10 | 10 |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 'interactive_ui_tests', 'sync_integration_tests' | 381 'interactive_ui_tests', 'sync_integration_tests' |
382 ] | 382 ] |
383 # | 383 # |
384 # CANARY BUILDERS | 384 # CANARY BUILDERS |
385 # | 385 # |
386 # Project, OS, Compiler,Arch, Configuration, Flavor, Wor
kdir,GYP_DEFINES,Factory, Target, Scheduler, Extra Args | 386 # Project, OS, Compiler,Arch, Configuration, Flavor, Wor
kdir,GYP_DEFINES,Factory, Target, Scheduler, Extra Args |
387 # | 387 # |
388 canaries = [ | 388 canaries = [ |
389 ('Chrome', 'Ubuntu13.10', 'Ninja', 'x86_64', 'DRT', None, '
src', None, f_drt, LINUX, S_PERCOMMIT, {'path_to_skia': ['third_party
', 'skia']}), | 389 ('Chrome', 'Ubuntu13.10', 'Ninja', 'x86_64', 'DRT', None, '
src', None, f_drt, LINUX, S_PERCOMMIT, {'path_to_skia': ['third_party
', 'skia']}), |
390 ('Chrome', 'Ubuntu13.10', 'Ninja', 'x86_64', 'ToT', 'chrome', '
src', None, f_canary, LINUX, S_PERCOMMIT, {'flavor': 'chrome', 'build_ta
rgets': chrome_build_targets, 'path_to_skia': ['third_party', 'skia']}), | 390 ('Chrome', 'Ubuntu13.10', 'Ninja', 'x86_64', 'ToT', 'chrome', '
src', None, f_canary, LINUX, S_PERCOMMIT, {'flavor': 'chrome', 'build_ta
rgets': chrome_build_targets, 'path_to_skia': ['third_party', 'skia']}), |
391 ('Chrome', 'Win7', 'Ninja', 'x86', 'SharedLib_ToT', 'chrome', '
src', GYP_SHARED, f_canary, WIN32, S_PERCOMMIT, {'flavor': 'chrome', 'build_ta
rgets': chrome_build_targets, 'path_to_skia': ['third_party', 'skia']}), | 391 ('Chrome', 'Win', 'Ninja', 'x86', 'SharedLib_ToT', 'chrome', '
src', GYP_SHARED, f_canary, WIN32, S_PERCOMMIT, {'flavor': 'chrome', 'build_ta
rgets': chrome_build_targets, 'path_to_skia': ['third_party', 'skia']}), |
392 ] | 392 ] |
393 | 393 |
394 setup_builders_from_config_list(canaries, helper, do_upload_render_results, | 394 setup_builders_from_config_list(canaries, helper, do_upload_render_results, |
395 do_upload_bench_results, CanaryBuilder) | 395 do_upload_bench_results, CanaryBuilder) |
396 | 396 |
397 | 397 |
398 def setup_all_builders(helper, do_upload_render_results, | 398 def setup_all_builders(helper, do_upload_render_results, |
399 do_upload_bench_results): | 399 do_upload_bench_results): |
400 """Set up all builders for this master. | 400 """Set up all builders for this master. |
401 | 401 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 # To resolve https://code.google.com/p/skia/issues/detail?id=2432 | 453 # To resolve https://code.google.com/p/skia/issues/detail?id=2432 |
454 # ('buildbots: don't run UpdateScripts if running on non-production | 454 # ('buildbots: don't run UpdateScripts if running on non-production |
455 # master'), I wanted to add a third boolean flag (do_update_scripts), | 455 # master'), I wanted to add a third boolean flag (do_update_scripts), |
456 # but I saw that I would need to add it in so many places I was | 456 # but I saw that I would need to add it in so many places I was |
457 # discouraged. If the merged all the flags into a single object it | 457 # discouraged. If the merged all the flags into a single object it |
458 # would be easier to add more flags. | 458 # would be easier to add more flags. |
459 do_upload_render_results=active_master.do_upload_render_results, | 459 do_upload_render_results=active_master.do_upload_render_results, |
460 do_upload_bench_results=active_master.do_upload_bench_results) | 460 do_upload_bench_results=active_master.do_upload_bench_results) |
461 | 461 |
462 return helper.Update(cfg) | 462 return helper.Update(cfg) |
OLD | NEW |