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

Side by Side Diff: masters/master.chromium.fyi/master.cfg

Issue 700053006: Remove the Win GN bots from the FYI waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # vim: ft=python: 1 # vim: ft=python:
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 from buildbot.scheduler import Dependent 6 from buildbot.scheduler import Dependent
7 from buildbot.scheduler import Nightly 7 from buildbot.scheduler import Nightly
8 from buildbot.scheduler import Periodic 8 from buildbot.scheduler import Periodic
9 from buildbot.scheduler import Scheduler 9 from buildbot.scheduler import Scheduler
10 from buildbot.scheduler import Triggerable 10 from buildbot.scheduler import Triggerable
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'Chromium Mac 10.7 Ninja Goma Canary', 123 'Chromium Mac 10.7 Ninja Goma Canary',
124 'Chromium Mac 10.8 x64 (experimental)', 124 'Chromium Mac 10.8 x64 (experimental)',
125 'Chromium Mac 10.10', 125 'Chromium Mac 10.10',
126 'Windows 8 App Certification', 126 'Windows 8 App Certification',
127 'ChromiumOS Linux Tests', 127 'ChromiumOS Linux Tests',
128 'Ozone ECS Linux', 128 'Ozone ECS Linux',
129 'Linux Trusty', 129 'Linux Trusty',
130 'Linux Trusty (32)', 130 'Linux Trusty (32)',
131 'Linux Trusty (dbg)', 131 'Linux Trusty (dbg)',
132 'Linux Trusty (dbg)(32)', 132 'Linux Trusty (dbg)(32)',
133 'Windows GN',
134 'Windows GN (dbg)',
135 'Print Preview Linux', 133 'Print Preview Linux',
136 'Print Preview Mac', 134 'Print Preview Mac',
137 'Print Preview Win', 135 'Print Preview Win',
138 'Site Isolation Linux', 136 'Site Isolation Linux',
139 'Site Isolation Win', 137 'Site Isolation Win',
140 'Closure Compilation Linux', 138 'Closure Compilation Linux',
141 'Chromium Linux ChromeOS MSan Builder', 139 'Chromium Linux ChromeOS MSan Builder',
142 'Linux ChromiumOS Athena Builder' 140 'Linux ChromiumOS Athena Builder'
143 ]) 141 ])
144 142
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 factory_properties={ 1029 factory_properties={
1032 'goma_canary': True, 1030 'goma_canary': True,
1033 'slave_internal_url': config.Master.slave_internal_url, 1031 'slave_internal_url': config.Master.slave_internal_url,
1034 'gclient_env': { 1032 'gclient_env': {
1035 'GYP_DEFINES': ( 1033 'GYP_DEFINES': (
1036 'component=shared_library fastbuild=1 chromium_win_pch=0' 1034 'component=shared_library fastbuild=1 chromium_win_pch=0'
1037 ), 1035 ),
1038 }}) 1036 }})
1039 1037
1040 1038
1041 f_windows_gn = \
1042 annotator_factory.AnnotatorFactory().BaseFactory(recipe='chromium_gn')
1043
1044 f_windows_gn_dbg = \
1045 annotator_factory.AnnotatorFactory().BaseFactory(recipe='chromium_gn')
1046
1047 f_chromium_dbg_android_builder = \ 1039 f_chromium_dbg_android_builder = \
1048 linux_android().ChromiumAnnotationFactory( 1040 linux_android().ChromiumAnnotationFactory(
1049 target='Debug', 1041 target='Debug',
1050 slave_type='AnnotatedBuilder', 1042 slave_type='AnnotatedBuilder',
1051 annotation_script='src/build/android/buildbot/bb_run_bot.py', 1043 annotation_script='src/build/android/buildbot/bb_run_bot.py',
1052 factory_properties={ 1044 factory_properties={
1053 'android_bot_id': 'fyi-builder-dbg', 1045 'android_bot_id': 'fyi-builder-dbg',
1054 'build_url': chromium_android_fyi_dbg_archive, 1046 'build_url': chromium_android_fyi_dbg_archive,
1055 'trigger': 'android_dbg', 1047 'trigger': 'android_dbg',
1056 }) 1048 })
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
1580 'category': 'win clang', 1572 'category': 'win clang',
1581 'auto_reboot': False, 1573 'auto_reboot': False,
1582 } 1574 }
1583 b_chromium_win_clang_asan_tester = { 1575 b_chromium_win_clang_asan_tester = {
1584 'name': 'Cr Win Clang (asan) tester', 1576 'name': 'Cr Win Clang (asan) tester',
1585 'factory': f_chromium_win_clang_asan_tester, 1577 'factory': f_chromium_win_clang_asan_tester,
1586 'category': 'win clang', 1578 'category': 'win clang',
1587 'auto_reboot': False, 1579 'auto_reboot': False,
1588 } 1580 }
1589 1581
1590 b_windows_gn = {
1591 'name': 'Windows GN',
1592 'factory': f_windows_gn,
1593 'category': 'windows',
1594 'auto_reboot': False,
1595 }
1596
1597 b_windows_gn_dbg = {
1598 'name': 'Windows GN (dbg)',
1599 'factory': f_windows_gn_dbg,
1600 'category': 'windows',
1601 'auto_reboot': False,
1602 }
1603
1604 b_chromium_win7_shared_vs2013_dbg = { 1582 b_chromium_win7_shared_vs2013_dbg = {
1605 'name': 'Cr Win VS2013 (dbg)', 1583 'name': 'Cr Win VS2013 (dbg)',
1606 'factory': f_chromium_win_shared_2013_dbg, 1584 'factory': f_chromium_win_shared_2013_dbg,
1607 'category': 'ninja', 1585 'category': 'ninja',
1608 'auto_reboot': False, 1586 'auto_reboot': False,
1609 } 1587 }
1610 1588
1611 b_chromium_win7_shared_vs2013 = { 1589 b_chromium_win7_shared_vs2013 = {
1612 'name': 'Cr Win VS2013', 1590 'name': 'Cr Win VS2013',
1613 'factory': f_chromium_win_shared_2013, 1591 'factory': f_chromium_win_shared_2013,
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
2161 b_chromium_win_clang_shared_tester, 2139 b_chromium_win_clang_shared_tester,
2162 b_chromium_win_clang_64, 2140 b_chromium_win_clang_64,
2163 b_chromium_win_clang_64_tester, 2141 b_chromium_win_clang_64_tester,
2164 b_chromium_win_clang_64_dbg, 2142 b_chromium_win_clang_64_dbg,
2165 b_chromium_win_clang_64_dbg_tester, 2143 b_chromium_win_clang_64_dbg_tester,
2166 b_chromium_win_clang_64_shared, 2144 b_chromium_win_clang_64_shared,
2167 b_chromium_win_clang_64_shared_tester, 2145 b_chromium_win_clang_64_shared_tester,
2168 b_chromium_win_clang_asan, 2146 b_chromium_win_clang_asan,
2169 b_chromium_win_clang_asan_tester, 2147 b_chromium_win_clang_asan_tester,
2170 b_chromium_win_pgo_builder, 2148 b_chromium_win_pgo_builder,
2171 b_windows_gn,
2172 2149
2173 # Windows debug 2150 # Windows debug
2174 b_chromium_dbg_builder, 2151 b_chromium_dbg_builder,
2175 b_chromium_dbg_vista_tests_1, 2152 b_chromium_dbg_vista_tests_1,
2176 b_chromium_dbg_vista_tests_2, 2153 b_chromium_dbg_vista_tests_2,
2177 b_windows_gn_dbg,
2178 2154
2179 # Mac BuilderTesters 2155 # Mac BuilderTesters
2180 b_chromium_mac_106_goma_canary, 2156 b_chromium_mac_106_goma_canary,
2181 b_chromium_mac_107_goma_canary, 2157 b_chromium_mac_107_goma_canary,
2182 b_chromium_mac_106_ninja_goma_canary, 2158 b_chromium_mac_106_ninja_goma_canary,
2183 b_chromium_mac_107_ninja_goma_canary, 2159 b_chromium_mac_107_ninja_goma_canary,
2184 b_chromium_mac_108_x64_experimental, 2160 b_chromium_mac_108_x64_experimental,
2185 b_chromium_mac_108_x64_tester_experimental, 2161 b_chromium_mac_108_x64_tester_experimental,
2186 b_chromium_mac_1010, 2162 b_chromium_mac_1010,
2187 2163
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
2442 fromaddr=ActiveMaster.from_address, # Reply-To address 2418 fromaddr=ActiveMaster.from_address, # Reply-To address
2443 mode='failing', 2419 mode='failing',
2444 relayhost=config.Master.smtp, 2420 relayhost=config.Master.smtp,
2445 subject='Build failure on %(builder)s', 2421 subject='Build failure on %(builder)s',
2446 extraRecipients=[ 2422 extraRecipients=[
2447 'sebmarchand+pgofailure@google.com', 2423 'sebmarchand+pgofailure@google.com',
2448 'scottmg+pgofailure@google.com' 2424 'scottmg+pgofailure@google.com'
2449 ], 2425 ],
2450 sendToInterestedUsers=False, 2426 sendToInterestedUsers=False,
2451 builders=['Chromium Win PGO Builder'])) 2427 builders=['Chromium Win PGO Builder']))
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698