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

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

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

Powered by Google App Engine
This is Rietveld 408576698