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

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

Issue 1917373002: Remove Linux Trusty chromium.fyi bots. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: merge Created 4 years, 7 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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'Linux ARM', 121 'Linux ARM',
122 'Linux Trusty',
123 'Linux Trusty (dbg)',
124 'Linux V8 API Stability', 122 'Linux V8 API Stability',
125 'Headless Linux (dbg)', 123 'Headless Linux (dbg)',
126 'Site Isolation Linux', 124 'Site Isolation Linux',
127 'Site Isolation Win', 125 'Site Isolation Win',
128 'Browser Side Navigation Linux', 126 'Browser Side Navigation Linux',
129 'Closure Compilation Linux', 127 'Closure Compilation Linux',
130 'CFI Linux', 128 'CFI Linux',
131 'CFI Linux ToT', 129 'CFI Linux ToT',
132 'CFI Linux CF', 130 'CFI Linux CF',
133 'LTO Linux Perf', 131 'LTO Linux Perf',
(...skipping 804 matching lines...) Expand 10 before | Expand all | Expand 10 after
938 'auto_reboot': True, 936 'auto_reboot': True,
939 } 937 }
940 938
941 b_linux_arm = { 939 b_linux_arm = {
942 'name': 'Linux ARM', 940 'name': 'Linux ARM',
943 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), 941 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'),
944 'category': 'linux', 942 'category': 'linux',
945 'auto_reboot': False, 943 'auto_reboot': False,
946 } 944 }
947 945
948 b_chromium_trusty = {
949 'name': 'Linux Trusty',
950 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'),
951 'category': 'linux',
952 'auto_reboot': True,
953 }
954
955 b_chromium_trusty_dbg = {
956 'name': 'Linux Trusty (dbg)',
957 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'),
958 'category': 'linux',
959 'auto_reboot': True,
960 }
961
962 b_chromium_v8_api_stability = { 946 b_chromium_v8_api_stability = {
963 'name': 'Linux V8 API Stability', 947 'name': 'Linux V8 API Stability',
964 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), 948 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'),
965 'category': 'linux', 949 'category': 'linux',
966 'auto_reboot': True, 950 'auto_reboot': True,
967 } 951 }
968 952
969 b_chromium_linux_webkit_trace_wrappables = { 953 b_chromium_linux_webkit_trace_wrappables = {
970 'name': 'WebKit Linux - TraceWrappables', 954 'name': 'WebKit Linux - TraceWrappables',
971 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'), 955 'factory': annotator_factory.AnnotatorFactory().BaseFactory('chromium'),
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1160 b_chromium_dbg_android_cloud_tests, 1144 b_chromium_dbg_android_cloud_tests,
1161 1145
1162 b_chromium_dbg_android_chromedriver_tests, 1146 b_chromium_dbg_android_chromedriver_tests,
1163 b_chromium_dbg_android_asan_builder_tests, 1147 b_chromium_dbg_android_asan_builder_tests,
1164 1148
1165 # Sanitizers 1149 # Sanitizers
1166 b_chromium_libfuzzer_upload_linux_asan, 1150 b_chromium_libfuzzer_upload_linux_asan,
1167 b_chromium_libfuzzer_upload_linux_msan, 1151 b_chromium_libfuzzer_upload_linux_msan,
1168 b_chromium_libfuzzer_upload_linux_ubsan, 1152 b_chromium_libfuzzer_upload_linux_ubsan,
1169 1153
1170 # Ubuntu 14.04 Trusty
1171 b_chromium_trusty,
1172 b_chromium_trusty_dbg,
1173
1174 # V8 API stability checker 1154 # V8 API stability checker
1175 b_chromium_v8_api_stability, 1155 b_chromium_v8_api_stability,
1176 1156
1177 # Headles BuilderTester 1157 # Headles BuilderTester
1178 b_headless_linux, 1158 b_headless_linux,
1179 1159
1180 # Site Isolation 1160 # Site Isolation
1181 b_chromium_site_isolation_linux, 1161 b_chromium_site_isolation_linux,
1182 b_chromium_site_isolation_win, 1162 b_chromium_site_isolation_win,
1183 b_chromium_browser_side_navigation_linux, 1163 b_chromium_browser_side_navigation_linux,
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
1375 builders=['Chromium Win PGO Builder'])) 1355 builders=['Chromium Win PGO Builder']))
1376 1356
1377 c['status'].append(MailNotifier( 1357 c['status'].append(MailNotifier(
1378 fromaddr=ActiveMaster.from_address, # Reply-To address 1358 fromaddr=ActiveMaster.from_address, # Reply-To address
1379 mode='failing', 1359 mode='failing',
1380 relayhost=config.Master.smtp, 1360 relayhost=config.Master.smtp,
1381 subject='Build failure on %(builder)s', 1361 subject='Build failure on %(builder)s',
1382 extraRecipients=['sbc@chromium.org'], 1362 extraRecipients=['sbc@chromium.org'],
1383 sendToInterestedUsers=False, 1363 sendToInterestedUsers=False,
1384 builders=['Linux ARM'])) 1364 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