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

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

Issue 1147043007: Promote deterministic build CI to real CI (tree closer, except for the Clang builder) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: revert the recipe change. Created 5 years, 6 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'Cr Win VS2013 (dbg)', 93 'Cr Win VS2013 (dbg)',
94 'Cr Win VS2013', 94 'Cr Win VS2013',
95 'CrWinGoma', 95 'CrWinGoma',
96 'CrWinGoma(dll)', # not (shared) cause crbug.com/399990 96 'CrWinGoma(dll)', # not (shared) cause crbug.com/399990
97 'CrWin7Goma', 97 'CrWin7Goma',
98 'CrWin7Goma(dll)', # not (shared) cause crbug.com/399990 98 'CrWin7Goma(dll)', # not (shared) cause crbug.com/399990
99 'CrWin7Goma(dbg)', 99 'CrWin7Goma(dbg)',
100 'CrWin7Goma(clbr)', # not (clobber) cause crbug.com/399990 100 'CrWin7Goma(clbr)', # not (clobber) cause crbug.com/399990
101 'CrWinClangGoma', 101 'CrWinClangGoma',
102 'CrWinClang', 102 'CrWinClang',
103 'ClangWinRepeatable',
103 'CrWinClang(dbg)', 104 'CrWinClang(dbg)',
104 'CrWinClang(shared)', 105 'CrWinClang(shared)',
105 'CrWinClang64', 106 'CrWinClang64',
106 'CrWinClang64(dbg)', 107 'CrWinClang64(dbg)',
107 'CrWinClang64(dll)', # not (shared) cause crbug.com/399990 108 'CrWinClang64(dll)', # not (shared) cause crbug.com/399990
108 'CrWinClangLLD', 109 'CrWinClangLLD',
109 'CrWinAsan', 110 'CrWinAsan',
110 'ClangToTLinux', 111 'ClangToTLinux',
111 'ClangToTLinux (dbg)', 112 'ClangToTLinux (dbg)',
112 'ClangToTLinuxASan', 113 'ClangToTLinuxASan',
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
1186 'category': 'clang tot', 1187 'category': 'clang tot',
1187 'auto_reboot': False, 1188 'auto_reboot': False,
1188 } 1189 }
1189 b_chromium_win_clang_asan_shared_tester = { 1190 b_chromium_win_clang_asan_shared_tester = {
1190 'name': 'CrWinAsan(dll) tester', 1191 'name': 'CrWinAsan(dll) tester',
1191 'factory': m_annotator.BaseFactory('chromium'), 1192 'factory': m_annotator.BaseFactory('chromium'),
1192 'category': 'clang tot', 1193 'category': 'clang tot',
1193 'auto_reboot': False, 1194 'auto_reboot': False,
1194 } 1195 }
1195 1196
1197 b_chromium_win_clang_deterministic = {
1198 # The bot need a short (< 19 characters) name to work around crbug.com/399990.
1199 'name': 'ClangWinRepeatable',
1200 'factory': annotator_factory.AnnotatorFactory().BaseFactory(
1201 'deterministic_build',
1202 factory_properties = {
1203 'configuration': 'Release',
1204 }),
1205 # Auto-reboot to try to clear up TEMP fill up issues.
1206 'auto_reboot': True,
1207 'category': 'win clang',
1208 }
1209
1196 b_clang_tot_linux = { 1210 b_clang_tot_linux = {
1197 'name': 'ClangToTLinux', 1211 'name': 'ClangToTLinux',
1198 'factory': m_annotator.BaseFactory('chromium', 1212 'factory': m_annotator.BaseFactory('chromium',
1199 triggers=['clang_tot_linux']), 1213 triggers=['clang_tot_linux']),
1200 'category': 'clang tot', 1214 'category': 'clang tot',
1201 'auto_reboot': False, 1215 'auto_reboot': False,
1202 } 1216 }
1203 b_clang_tot_linux_tester = { 1217 b_clang_tot_linux_tester = {
1204 'name': 'ClangToTLinux tester', 1218 'name': 'ClangToTLinux tester',
1205 'factory': m_annotator.BaseFactory('chromium'), 1219 'factory': m_annotator.BaseFactory('chromium'),
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
1980 b_clang_tot_win64_dbg, 1994 b_clang_tot_win64_dbg,
1981 b_clang_tot_win64_dbg_tester, 1995 b_clang_tot_win64_dbg_tester,
1982 b_clang_tot_win64_dll, 1996 b_clang_tot_win64_dll,
1983 b_clang_tot_win64_dll_tester, 1997 b_clang_tot_win64_dll_tester,
1984 b_chromium_win_clang_lld, 1998 b_chromium_win_clang_lld,
1985 b_chromium_win_clang_lld_tester, 1999 b_chromium_win_clang_lld_tester,
1986 b_chromium_win_clang_asan, 2000 b_chromium_win_clang_asan,
1987 b_chromium_win_clang_asan_tester, 2001 b_chromium_win_clang_asan_tester,
1988 b_chromium_win_clang_asan_shared, 2002 b_chromium_win_clang_asan_shared,
1989 b_chromium_win_clang_asan_shared_tester, 2003 b_chromium_win_clang_asan_shared_tester,
2004 b_chromium_win_clang_deterministic,
1990 2005
1991 # Control flow integrity. 2006 # Control flow integrity.
1992 b_chromium_cfi_linux, 2007 b_chromium_cfi_linux,
1993 ] 2008 ]
1994 2009
1995 # DrMemory test bots 2010 # DrMemory test bots
1996 b_win_drmemory = [ 2011 b_win_drmemory = [
1997 b_chromium_windows_drmemory_builder, 2012 b_chromium_windows_drmemory_builder,
1998 b_chromium_rel_win_drmemory_xp, 2013 b_chromium_rel_win_drmemory_xp,
1999 b_chromium_tests_drmemory, 2014 b_chromium_tests_drmemory,
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
2123 c['status'].append(MailNotifier( 2138 c['status'].append(MailNotifier(
2124 fromaddr=ActiveMaster.from_address, # Reply-To address 2139 fromaddr=ActiveMaster.from_address, # Reply-To address
2125 mode='failing', 2140 mode='failing',
2126 relayhost=config.Master.smtp, 2141 relayhost=config.Master.smtp,
2127 subject='Remoting Android Tests failing on %(builder)s', 2142 subject='Remoting Android Tests failing on %(builder)s',
2128 extraRecipients=[ 2143 extraRecipients=[
2129 'remoting-android-test-results@google.com', 2144 'remoting-android-test-results@google.com',
2130 ], 2145 ],
2131 sendToInterestedUsers=False, 2146 sendToInterestedUsers=False,
2132 builders=['Android Remoting Tests'])) 2147 builders=['Android Remoting Tests']))
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