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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py

Issue 2156443003: tryserver.chromium.win: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: presubmit Created 4 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
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 from . import steps 5 from . import steps
6 6
7 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 9
10 KITCHEN_TEST_SPEC = { 10 KITCHEN_TEST_SPEC = {
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 ], 605 ],
606 'bot_type': 'builder', 606 'bot_type': 'builder',
607 'testing': { 607 'testing': {
608 'platform': 'win', 608 'platform': 'win',
609 }, 609 },
610 'use_isolate': True, 610 'use_isolate': True,
611 'enable_swarming': True, 611 'enable_swarming': True,
612 # Workaround so that recipes doesn't add random build targets to our 612 # Workaround so that recipes doesn't add random build targets to our
613 # compile line. We want to build everything. 613 # compile line. We want to build everything.
614 'add_tests_as_compile_targets': False, 614 'add_tests_as_compile_targets': False,
615 'checkout_dir': 'win_clang',
615 }, 616 },
616 'CrWinClang tester': { 617 'CrWinClang tester': {
617 'chromium_config': 'chromium_no_goma', 618 'chromium_config': 'chromium_no_goma',
618 'gclient_config': 'chromium', 619 'gclient_config': 'chromium',
619 'chromium_config_kwargs': { 620 'chromium_config_kwargs': {
620 'BUILD_CONFIG': 'Release', 621 'BUILD_CONFIG': 'Release',
621 'TARGET_BITS': 32, 622 'TARGET_BITS': 32,
622 }, 623 },
623 'test_generators': [ 624 'test_generators': [
624 steps.generate_gtest, 625 steps.generate_gtest,
(...skipping 19 matching lines...) Expand all
644 # Recipes builds Debug builds with component=shared_library by default. 645 # Recipes builds Debug builds with component=shared_library by default.
645 'bot_type': 'builder', 646 'bot_type': 'builder',
646 'testing': { 647 'testing': {
647 'platform': 'win', 648 'platform': 'win',
648 }, 649 },
649 'use_isolate': True, 650 'use_isolate': True,
650 'enable_swarming': True, 651 'enable_swarming': True,
651 # Workaround so that recipes doesn't add random build targets to our 652 # Workaround so that recipes doesn't add random build targets to our
652 # compile line. We want to build everything. 653 # compile line. We want to build everything.
653 'add_tests_as_compile_targets': False, 654 'add_tests_as_compile_targets': False,
655 'checkout_dir': 'win_clang',
654 }, 656 },
655 'CrWinClang(dbg) tester': { 657 'CrWinClang(dbg) tester': {
656 'chromium_config': 'chromium_no_goma', 658 'chromium_config': 'chromium_no_goma',
657 'gclient_config': 'chromium', 659 'gclient_config': 'chromium',
658 'chromium_config_kwargs': { 660 'chromium_config_kwargs': {
659 'BUILD_CONFIG': 'Debug', 661 'BUILD_CONFIG': 'Debug',
660 'TARGET_BITS': 32, 662 'TARGET_BITS': 32,
661 }, 663 },
662 'test_generators': [ 664 'test_generators': [
663 steps.generate_gtest, 665 steps.generate_gtest,
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
722 ], 724 ],
723 'bot_type': 'builder', 725 'bot_type': 'builder',
724 'testing': { 726 'testing': {
725 'platform': 'win', 727 'platform': 'win',
726 }, 728 },
727 'use_isolate': True, 729 'use_isolate': True,
728 'enable_swarming': True, 730 'enable_swarming': True,
729 # Workaround so that recipes doesn't add random build targets to our 731 # Workaround so that recipes doesn't add random build targets to our
730 # compile line. We want to build everything. 732 # compile line. We want to build everything.
731 'add_tests_as_compile_targets': False, 733 'add_tests_as_compile_targets': False,
734 'checkout_dir': 'win_clang',
732 }, 735 },
733 'CrWinClang64 tester': { 736 'CrWinClang64 tester': {
734 'chromium_config': 'chromium_no_goma', 737 'chromium_config': 'chromium_no_goma',
735 'gclient_config': 'chromium', 738 'gclient_config': 'chromium',
736 'chromium_config_kwargs': { 739 'chromium_config_kwargs': {
737 'BUILD_CONFIG': 'Release', 740 'BUILD_CONFIG': 'Release',
738 'TARGET_BITS': 64, 741 'TARGET_BITS': 64,
739 }, 742 },
740 'test_generators': [ 743 'test_generators': [
741 steps.generate_gtest, 744 steps.generate_gtest,
(...skipping 19 matching lines...) Expand all
761 # Recipes builds Debug builds with component=shared_library by default. 764 # Recipes builds Debug builds with component=shared_library by default.
762 'bot_type': 'builder', 765 'bot_type': 'builder',
763 'testing': { 766 'testing': {
764 'platform': 'win', 767 'platform': 'win',
765 }, 768 },
766 'use_isolate': True, 769 'use_isolate': True,
767 'enable_swarming': True, 770 'enable_swarming': True,
768 # Workaround so that recipes doesn't add random build targets to our 771 # Workaround so that recipes doesn't add random build targets to our
769 # compile line. We want to build everything. 772 # compile line. We want to build everything.
770 'add_tests_as_compile_targets': False, 773 'add_tests_as_compile_targets': False,
774 'checkout_dir': 'win_clang',
771 }, 775 },
772 'CrWinClang64(dbg) tester': { 776 'CrWinClang64(dbg) tester': {
773 'chromium_config': 'chromium_no_goma', 777 'chromium_config': 'chromium_no_goma',
774 'gclient_config': 'chromium', 778 'gclient_config': 'chromium',
775 'chromium_config_kwargs': { 779 'chromium_config_kwargs': {
776 'BUILD_CONFIG': 'Debug', 780 'BUILD_CONFIG': 'Debug',
777 'TARGET_BITS': 64, 781 'TARGET_BITS': 64,
778 }, 782 },
779 'test_generators': [ 783 'test_generators': [
780 steps.generate_gtest, 784 steps.generate_gtest,
(...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after
2132 'gclient_config': 'chromium', 2136 'gclient_config': 'chromium',
2133 'chromium_config_kwargs': { 2137 'chromium_config_kwargs': {
2134 'BUILD_CONFIG': 'Release', 2138 'BUILD_CONFIG': 'Release',
2135 'TARGET_PLATFORM': 'win', 2139 'TARGET_PLATFORM': 'win',
2136 'TARGET_BITS': 32, 2140 'TARGET_BITS': 32,
2137 }, 2141 },
2138 'compile_targets': [ 2142 'compile_targets': [
2139 'chrome', 2143 'chrome',
2140 ], 2144 ],
2141 'enable_swarming': True, 2145 'enable_swarming': True,
2146 'checkout_dir': 'win',
2142 'testing': { 2147 'testing': {
2143 'platform': 'win', 2148 'platform': 'win',
2144 }, 2149 },
2145 }, 2150 },
2146 2151
2147 'Linux remote_run Builder': { 2152 'Linux remote_run Builder': {
2148 'chromium_config': 'chromium', 2153 'chromium_config': 'chromium',
2149 'chromium_apply_config': [ 2154 'chromium_apply_config': [
2150 'mb', 2155 'mb',
2151 'ninja_confirm_noop', 2156 'ninja_confirm_noop',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
2227 steps.generate_gtest, 2232 steps.generate_gtest,
2228 steps.generate_script, 2233 steps.generate_script,
2229 steps.generate_isolated_script, 2234 steps.generate_isolated_script,
2230 ], 2235 ],
2231 'testing': { 'platform': 'win', }, 2236 'testing': { 'platform': 'win', },
2232 'use_isolate': True, 2237 'use_isolate': True,
2233 'enable_swarming': True, 2238 'enable_swarming': True,
2234 }, 2239 },
2235 }, 2240 },
2236 } 2241 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698