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

Side by Side Diff: scripts/slave/recipe_modules/v8/builders.py

Issue 1215463007: V8 Buildbot: Run test262 only on win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 5 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Win32___1.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # Contains the bulk of the V8 builder configurations so they can be reused 5 # Contains the bulk of the V8 builder configurations so they can be reused
6 # from multiple recipes. 6 # from multiple recipes.
7 7
8 from infra.libs.infra_types import freeze 8 from infra.libs.infra_types import freeze
9 9
10 BUILDERS = { 10 BUILDERS = {
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 'V8 Win32 - 1': { 544 'V8 Win32 - 1': {
545 'v8_config_kwargs': { 545 'v8_config_kwargs': {
546 'BUILD_CONFIG': 'Release', 546 'BUILD_CONFIG': 'Release',
547 'TARGET_BITS': 32, 547 'TARGET_BITS': 32,
548 'SHARD_COUNT': 2, 548 'SHARD_COUNT': 2,
549 'SHARD_RUN': 1, 549 'SHARD_RUN': 1,
550 }, 550 },
551 'bot_type': 'tester', 551 'bot_type': 'tester',
552 'parent_buildername': 'V8 Win32 - builder', 552 'parent_buildername': 'V8 Win32 - builder',
553 'build_gs_archive': 'win32_rel_archive', 553 'build_gs_archive': 'win32_rel_archive',
554 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'], 554 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'],
555 'testing': {'platform': 'win'}, 555 'testing': {'platform': 'win'},
556 }, 556 },
557 'V8 Win32 - 2': { 557 'V8 Win32 - 2': {
558 'v8_config_kwargs': { 558 'v8_config_kwargs': {
559 'BUILD_CONFIG': 'Release', 559 'BUILD_CONFIG': 'Release',
560 'TARGET_BITS': 32, 560 'TARGET_BITS': 32,
561 'SHARD_COUNT': 2, 561 'SHARD_COUNT': 2,
562 'SHARD_RUN': 2, 562 'SHARD_RUN': 2,
563 }, 563 },
564 'bot_type': 'tester', 564 'bot_type': 'tester',
565 'parent_buildername': 'V8 Win32 - builder', 565 'parent_buildername': 'V8 Win32 - builder',
566 'build_gs_archive': 'win32_rel_archive', 566 'build_gs_archive': 'win32_rel_archive',
567 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'], 567 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'],
568 'testing': {'platform': 'win'}, 568 'testing': {'platform': 'win'},
569 }, 569 },
570 'V8 Win32 - nosnap - shared': { 570 'V8 Win32 - nosnap - shared': {
571 'v8_apply_config': ['no_snapshot'], 571 'v8_apply_config': ['no_snapshot'],
572 'chromium_apply_config': ['msvs2013', 'shared_library', 'no_snapshot'], 572 'chromium_apply_config': ['msvs2013', 'shared_library', 'no_snapshot'],
573 'v8_config_kwargs': { 573 'v8_config_kwargs': {
574 'BUILD_CONFIG': 'Release', 574 'BUILD_CONFIG': 'Release',
575 'TARGET_BITS': 32, 575 'TARGET_BITS': 32,
576 }, 576 },
577 'bot_type': 'builder_tester', 577 'bot_type': 'builder_tester',
578 'tests': ['unittests', 'v8testing'], 578 'tests': ['unittests', 'v8testing'],
579 'testing': {'platform': 'win'}, 579 'testing': {'platform': 'win'},
580 }, 580 },
581 'V8 Win32 - debug - 1': { 581 'V8 Win32 - debug - 1': {
582 'v8_config_kwargs': { 582 'v8_config_kwargs': {
583 'BUILD_CONFIG': 'Debug', 583 'BUILD_CONFIG': 'Debug',
584 'TARGET_BITS': 32, 584 'TARGET_BITS': 32,
585 'SHARD_COUNT': 3, 585 'SHARD_COUNT': 3,
586 'SHARD_RUN': 1, 586 'SHARD_RUN': 1,
587 }, 587 },
588 'bot_type': 'tester', 588 'bot_type': 'tester',
589 'parent_buildername': 'V8 Win32 - debug builder', 589 'parent_buildername': 'V8 Win32 - debug builder',
590 'build_gs_archive': 'win32_dbg_archive', 590 'build_gs_archive': 'win32_dbg_archive',
591 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'], 591 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'],
592 'testing': {'platform': 'win'}, 592 'testing': {'platform': 'win'},
593 }, 593 },
594 'V8 Win32 - debug - 2': { 594 'V8 Win32 - debug - 2': {
595 'v8_config_kwargs': { 595 'v8_config_kwargs': {
596 'BUILD_CONFIG': 'Debug', 596 'BUILD_CONFIG': 'Debug',
597 'TARGET_BITS': 32, 597 'TARGET_BITS': 32,
598 'SHARD_COUNT': 3, 598 'SHARD_COUNT': 3,
599 'SHARD_RUN': 2, 599 'SHARD_RUN': 2,
600 }, 600 },
601 'bot_type': 'tester', 601 'bot_type': 'tester',
602 'parent_buildername': 'V8 Win32 - debug builder', 602 'parent_buildername': 'V8 Win32 - debug builder',
603 'build_gs_archive': 'win32_dbg_archive', 603 'build_gs_archive': 'win32_dbg_archive',
604 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'], 604 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'],
605 'testing': {'platform': 'win'}, 605 'testing': {'platform': 'win'},
606 }, 606 },
607 'V8 Win32 - debug - 3': { 607 'V8 Win32 - debug - 3': {
608 'v8_config_kwargs': { 608 'v8_config_kwargs': {
609 'BUILD_CONFIG': 'Debug', 609 'BUILD_CONFIG': 'Debug',
610 'TARGET_BITS': 32, 610 'TARGET_BITS': 32,
611 'SHARD_COUNT': 3, 611 'SHARD_COUNT': 3,
612 'SHARD_RUN': 3, 612 'SHARD_RUN': 3,
613 }, 613 },
614 'bot_type': 'tester', 614 'bot_type': 'tester',
615 'parent_buildername': 'V8 Win32 - debug builder', 615 'parent_buildername': 'V8 Win32 - debug builder',
616 'build_gs_archive': 'win32_dbg_archive', 616 'build_gs_archive': 'win32_dbg_archive',
617 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'], 617 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'],
618 'testing': {'platform': 'win'}, 618 'testing': {'platform': 'win'},
619 }, 619 },
620 'V8 Win64': { 620 'V8 Win64': {
621 'chromium_apply_config': ['msvs2013'], 621 'chromium_apply_config': ['msvs2013'],
622 'v8_config_kwargs': { 622 'v8_config_kwargs': {
623 'BUILD_CONFIG': 'Release', 623 'BUILD_CONFIG': 'Release',
624 'TARGET_BITS': 64, 624 'TARGET_BITS': 64,
625 }, 625 },
626 'bot_type': 'builder_tester', 626 'bot_type': 'builder_tester',
627 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'], 627 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'],
628 'testing': {'platform': 'win'}, 628 'testing': {'platform': 'win'},
629 }, 629 },
630 'V8 Win64 - debug': { 630 'V8 Win64 - debug': {
631 'chromium_apply_config': ['msvs2013'], 631 'chromium_apply_config': ['msvs2013'],
632 'v8_config_kwargs': { 632 'v8_config_kwargs': {
633 'BUILD_CONFIG': 'Debug', 633 'BUILD_CONFIG': 'Debug',
634 'TARGET_BITS': 64, 634 'TARGET_BITS': 64,
635 }, 635 },
636 'bot_type': 'builder_tester', 636 'bot_type': 'builder_tester',
637 'tests': ['unittests', 'v8testing', 'webkit', 'mozilla'], 637 'tests': ['unittests', 'v8testing', 'webkit', 'test262', 'mozilla'],
638 'testing': {'platform': 'win'}, 638 'testing': {'platform': 'win'},
639 }, 639 },
640 ####### Category: Mac 640 ####### Category: Mac
641 'V8 Mac': { 641 'V8 Mac': {
642 'chromium_apply_config': ['v8_ninja', 'clang', 'goma'], 642 'chromium_apply_config': ['v8_ninja', 'clang', 'goma'],
643 'v8_config_kwargs': { 643 'v8_config_kwargs': {
644 'BUILD_CONFIG': 'Release', 644 'BUILD_CONFIG': 'Release',
645 'TARGET_BITS': 32, 645 'TARGET_BITS': 32,
646 }, 646 },
647 'bot_type': 'builder_tester', 647 'bot_type': 'builder_tester',
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1926 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) 1926 dart_linux_release['chromium_apply_config'].extend(['v8_goma'])
1927 1927
1928 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] 1928 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release']
1929 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) 1929 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma'])
1930 1930
1931 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] 1931 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release']
1932 dart_win_release['chromium_apply_config'].extend(['msvs2013']) 1932 dart_win_release['chromium_apply_config'].extend(['msvs2013'])
1933 1933
1934 BUILDERS = freeze(BUILDERS) 1934 BUILDERS = freeze(BUILDERS)
1935 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 1935 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Win32___1.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698