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

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

Issue 1916223005: Remove 'ChromiumOS Linux Tests' bot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: put trusty bots back in (bad merge) Created 4 years, 8 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 | 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.changes.filter import ChangeFilter 6 from buildbot.changes.filter import ChangeFilter
7 from buildbot.scheduler import Dependent 7 from buildbot.scheduler import Dependent
8 from buildbot.scheduler import Nightly 8 from buildbot.scheduler import Nightly
9 from buildbot.scheduler import Periodic 9 from buildbot.scheduler import Periodic
10 from buildbot.scheduler import Scheduler 10 from buildbot.scheduler import Scheduler
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 'Chromium Linux Goma Canary (clobber)', 111 'Chromium Linux Goma Canary (clobber)',
112 'Chromium Linux Precise Goma LinkTest', 112 'Chromium Linux Precise Goma LinkTest',
113 'Chromium Linux32 Goma Canary (clobber)', 113 'Chromium Linux32 Goma Canary (clobber)',
114 'Chromium Mac 10.9 Goma Canary', 114 'Chromium Mac 10.9 Goma Canary',
115 'Chromium Mac 10.9 Goma Canary (dbg)', 115 'Chromium Mac 10.9 Goma Canary (dbg)',
116 'Chromium Mac 10.9 Goma Canary (clobber)', 116 'Chromium Mac 10.9 Goma Canary (clobber)',
117 'Chromium Mac 10.9 Goma Canary (dbg)(clobber)', 117 'Chromium Mac 10.9 Goma Canary (dbg)(clobber)',
118 'Chromium Mac 10.10 MacViews', 118 'Chromium Mac 10.10 MacViews',
119 'Chromium Mac 10.11', 119 'Chromium Mac 10.11',
120 'Chromium Mac 10.11 Force Mac Toolchain', 120 'Chromium Mac 10.11 Force Mac Toolchain',
121 'ChromiumOS Linux Tests',
122 'Linux ARM', 121 'Linux ARM',
123 'Linux Trusty', 122 'Linux Trusty',
124 'Linux Trusty (dbg)', 123 'Linux Trusty (dbg)',
125 'Linux V8 API Stability', 124 'Linux V8 API Stability',
126 'Headless Linux (dbg)', 125 'Headless Linux (dbg)',
127 'Site Isolation Linux', 126 'Site Isolation Linux',
128 'Site Isolation Win', 127 'Site Isolation Win',
129 'Browser Side Navigation Linux', 128 'Browser Side Navigation Linux',
130 'Closure Compilation Linux', 129 'Closure Compilation Linux',
131 'CFI Linux', 130 'CFI Linux',
(...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after
939 'auto_reboot': True, 938 'auto_reboot': True,
940 } 939 }
941 940
942 b_linux_arm = { 941 b_linux_arm = {
943 'name': 'Linux ARM', 942 'name': 'Linux ARM',
944 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), 943 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'),
945 'category': 'linux', 944 'category': 'linux',
946 'auto_reboot': False, 945 'auto_reboot': False,
947 } 946 }
948 947
949 b_chromiumos_linux_tests = {
950 'name': 'ChromiumOS Linux Tests',
951 'factory': F_RECIPE_MISC,
952 'category': 'linux',
953 'auto_reboot': False,
954 }
955
956 b_chromium_trusty = { 948 b_chromium_trusty = {
957 'name': 'Linux Trusty', 949 'name': 'Linux Trusty',
958 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), 950 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'),
959 'category': 'linux', 951 'category': 'linux',
960 'auto_reboot': True, 952 'auto_reboot': True,
961 } 953 }
962 954
963 b_chromium_trusty_dbg = { 955 b_chromium_trusty_dbg = {
964 'name': 'Linux Trusty (dbg)', 956 'name': 'Linux Trusty (dbg)',
965 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), 957 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'),
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
1149 b_chromium_mac_1011_force_mac_toolchain, 1141 b_chromium_mac_1011_force_mac_toolchain,
1150 1142
1151 # Windows /Analyze builder 1143 # Windows /Analyze builder
1152 b_chromium_win_analyze, 1144 b_chromium_win_analyze,
1153 1145
1154 # Linux BuilderTesters 1146 # Linux BuilderTesters
1155 b_chromium_linux_goma_canary, 1147 b_chromium_linux_goma_canary,
1156 b_chromium_linux_goma_canary_clobber, 1148 b_chromium_linux_goma_canary_clobber,
1157 b_chromium_linux_precise_goma_linktest, 1149 b_chromium_linux_precise_goma_linktest,
1158 b_chromium_linux32_goma_canary_clobber, 1150 b_chromium_linux32_goma_canary_clobber,
1159 b_chromiumos_linux_tests,
1160 1151
1161 # Linux ARM 1152 # Linux ARM
1162 b_linux_arm, 1153 b_linux_arm,
1163 1154
1164 # Android 1155 # Android
1165 b_chromium_dbg_android_builder, 1156 b_chromium_dbg_android_builder,
1166 b_chromium_dbg_android_tests_trial, 1157 b_chromium_dbg_android_tests_trial,
1167 b_chromium_dbg_android_emulator_builder_tests, 1158 b_chromium_dbg_android_emulator_builder_tests,
1168 b_chromium_rel_android_remoting_tests, 1159 b_chromium_rel_android_remoting_tests,
1169 b_chromium_dbg_android_cloud_tests, 1160 b_chromium_dbg_android_cloud_tests,
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
1384 builders=['Chromium Win PGO Builder'])) 1375 builders=['Chromium Win PGO Builder']))
1385 1376
1386 c['status'].append(MailNotifier( 1377 c['status'].append(MailNotifier(
1387 fromaddr=ActiveMaster.from_address, # Reply-To address 1378 fromaddr=ActiveMaster.from_address, # Reply-To address
1388 mode='failing', 1379 mode='failing',
1389 relayhost=config.Master.smtp, 1380 relayhost=config.Master.smtp,
1390 subject='Build failure on %(builder)s', 1381 subject='Build failure on %(builder)s',
1391 extraRecipients=['sbc@chromium.org'], 1382 extraRecipients=['sbc@chromium.org'],
1392 sendToInterestedUsers=False, 1383 sendToInterestedUsers=False,
1393 builders=['Linux ARM'])) 1384 builders=['Linux ARM']))
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