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

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

Issue 197059: Split the mac 10.5 perf bot in two. This way we will be more likely to have ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/buildbot/
Patch Set: '' Created 11 years, 3 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 # This is the buildmaster config file for the 'chromium' bot. It must 8 # This is the buildmaster config file for the 'chromium' bot. It must
9 # be installed as 'master.cfg' in your buildmaster's base directory 9 # be installed as 'master.cfg' in your buildmaster's base directory
10 # (although the filename can be changed with the --basedir option to 10 # (although the filename can be changed with the --basedir option to
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 178
179 # Scheduler to trigger slaves that depend on the mac release build. 179 # Scheduler to trigger slaves that depend on the mac release build.
180 s_chromium_rel_mac_builder = Scheduler(name='chromium_rel_mac_builder', 180 s_chromium_rel_mac_builder = Scheduler(name='chromium_rel_mac_builder',
181 branch='src', 181 branch='src',
182 treeStableTimer=60, 182 treeStableTimer=60,
183 builderNames=['Chromium Mac Builder']) 183 builderNames=['Chromium Mac Builder'])
184 184
185 s_chromium_rel_mac_dependent = Dependent('chromium_rel_mac_dependent', 185 s_chromium_rel_mac_dependent = Dependent('chromium_rel_mac_dependent',
186 s_chromium_rel_mac_builder, 186 s_chromium_rel_mac_builder,
187 ['Mac10.5 Tests', 187 ['Mac10.5 Tests',
188 'Mac10.5 Perf', 188 'Mac10.5 Perf(1)',
189 'Mac10.5 Perf(2)',
189 # add Mac10.6 Tests & Perf 190 # add Mac10.6 Tests & Perf
190 ]) 191 ])
191 192
192 193
193 # Scheduler to trigger slaves that depend on the debug build. 194 # Scheduler to trigger slaves that depend on the debug build.
194 s_chromium_dbg_builder = Scheduler(name='chromium_dbg_builder', 195 s_chromium_dbg_builder = Scheduler(name='chromium_dbg_builder',
195 branch='src', 196 branch='src',
196 treeStableTimer=60, 197 treeStableTimer=60,
197 builderNames=['Chromium Builder (dbg)']) 198 builderNames=['Chromium Builder (dbg)'])
198 199
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 factory_properties={'ui_total_shards': 2, 703 factory_properties={'ui_total_shards': 2,
703 'ui_shard_index': 1}) 704 'ui_shard_index': 1})
704 705
705 f_cr_dbg_mac_tests_2 = F_MAC('chromium-dbg-mac', slave_type='Tester', 706 f_cr_dbg_mac_tests_2 = F_MAC('chromium-dbg-mac', slave_type='Tester',
706 target='Debug', 707 target='Debug',
707 build_url=chromium_dbg_mac_archive, 708 build_url=chromium_dbg_mac_archive,
708 tests=['unit', 'ui'], 709 tests=['unit', 'ui'],
709 factory_properties={'ui_total_shards': 2, 710 factory_properties={'ui_total_shards': 2,
710 'ui_shard_index': 2}) 711 'ui_shard_index': 2})
711 712
712 # TODO: XP/Vista Perf also runs: 'memory', 'reliability', 'dom_checker' 713 # TODO: XP/Vista Perf also runs: 'reliability', 'dom_checker'
713 f_cr_rel_mac5_perf = F_MAC('chromium-rel-mac5', slave_type='Tester', 714 # We shard these so they finish in 1/2 the time, this way we tend to
714 build_url=chromium_rel_mac_archive, 715 # do more single cls in a run to make regressions show already isolated.
715 tests=['page_cycler', 'startup', 'dom_perf', 716 f_cr_rel_mac5_perf_1 = F_MAC('chromium-rel-mac5', slave_type='Tester',
716 'page_cycler_http', 'tab_switching', 717 build_url=chromium_rel_mac_archive,
717 'sunspider', 'v8_benchmark', 718 tests=['page_cycler', 'v8_benchmark'],
718 'memory'], 719 factory_properties={'show_perf_results': True,
719 factory_properties={'show_perf_results': True, 720 'perf_id': 'chromium-rel-mac5'} )
720 'perf_id': 'chromium-rel-mac5'}) 721
722 f_cr_rel_mac5_perf_2 = F_MAC('chromium-rel-mac5', slave_type='Tester',
723 build_url=chromium_rel_mac_archive,
724 tests=['startup', 'dom_perf',
725 'page_cycler_http', 'tab_switching',
726 'sunspider', 'memory'],
727 factory_properties={'show_perf_results': True,
728 'perf_id': 'chromium-rel-mac5'} )
721 729
722 f_cr_dbg_linux_views = F_LINUX('chromium-dbg-linux-views', 730 f_cr_dbg_linux_views = F_LINUX('chromium-dbg-linux-views',
723 target='Debug', tests=[], options=['chrome'], 731 target='Debug', tests=[], options=['chrome'],
724 factory_properties={'gclient_env': { 'GYP_DEFINES':'toolkit_views=1'}}) 732 factory_properties={'gclient_env': { 'GYP_DEFINES':'toolkit_views=1'}})
725 733
726 f_cr_rel_linux_chromeos = F_LINUX('chromium-rel-linux-chromeos', 734 f_cr_rel_linux_chromeos = F_LINUX('chromium-rel-linux-chromeos',
727 tests=[], options=['chrome linux_packages'], 735 tests=[], options=['chrome linux_packages'],
728 factory_properties={ 736 factory_properties={
729 'archive_build': True, 737 'archive_build': True,
730 'gclient_env': { 'GYP_DEFINES':'chromeos=1 branding=Chrome'}}) 738 'gclient_env': { 'GYP_DEFINES':'chromeos=1 branding=Chrome'}})
(...skipping 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
1225 'category': '3mac|builder_testers', 1233 'category': '3mac|builder_testers',
1226 } 1234 }
1227 1235
1228 b_chromium_dbg_mac5_tests_2 = {'name': 'Mac10.5 Tests (dbg)(2)', 1236 b_chromium_dbg_mac5_tests_2 = {'name': 'Mac10.5 Tests (dbg)(2)',
1229 'slavename': 'codf73', 1237 'slavename': 'codf73',
1230 'builddir': 'chromium-dbg-mac5-tests-2', 1238 'builddir': 'chromium-dbg-mac5-tests-2',
1231 'factory': f_cr_dbg_mac_tests_2, 1239 'factory': f_cr_dbg_mac_tests_2,
1232 'category': '3mac|builder_testers', 1240 'category': '3mac|builder_testers',
1233 } 1241 }
1234 1242
1235 b_chromium_rel_mac5_perf = {'name': 'Mac10.5 Perf', 1243 b_chromium_rel_mac5_perf_1 = {'name': 'Mac10.5 Perf(1)',
1236 'slavename': 'codf75', 1244 'slavename': 'codf75',
1237 'builddir': 'chromium-rel-mac5-perf', 1245 'builddir': 'chromium-rel-mac5-perf',
1238 'factory': f_cr_rel_mac5_perf, 1246 'factory': f_cr_rel_mac5_perf_1,
1247 'category': '3mac|builder_testers',
1248 }
1249
1250 b_chromium_rel_mac5_perf_2 = {'name': 'Mac10.5 Perf(2)',
1251 'slavename': 'codf80',
1252 'builddir': 'chromium-rel-mac5-perf',
Nicolas Sylvain 2009/09/09 14:27:47 i dont think you can share builddir.
1253 'factory': f_cr_rel_mac5_perf_2,
1239 'category': '3mac|builder_testers', 1254 'category': '3mac|builder_testers',
1240 } 1255 }
1241 1256
1242 b_sub_rel_mac = {'name': 'Modules Mac', 1257 b_sub_rel_mac = {'name': 'Modules Mac',
1243 'slavename': 'codf67', 1258 'slavename': 'codf67',
1244 'builddir': 'sub-rel-mac', 1259 'builddir': 'sub-rel-mac',
1245 'factory': f_sub_rel_mac, 1260 'factory': f_sub_rel_mac,
1246 'category': '3mac|builders_compile|builder_testers', 1261 'category': '3mac|builders_compile|builder_testers',
1247 } 1262 }
1248 1263
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
1355 b_chromium_xp_purify_unit, 1370 b_chromium_xp_purify_unit,
1356 b_chromium_rel_vista_tests, 1371 b_chromium_rel_vista_tests,
1357 b_chromium_dbg_vista_tests_1, 1372 b_chromium_dbg_vista_tests_1,
1358 b_chromium_dbg_vista_tests_2, 1373 b_chromium_dbg_vista_tests_2,
1359 b_chromium_rel_linux_valgrind_ui, 1374 b_chromium_rel_linux_valgrind_ui,
1360 b_chromium_rel_linux_valgrind_ui_2, 1375 b_chromium_rel_linux_valgrind_ui_2,
1361 b_chromium_rel_linux_valgrind_ui_3, 1376 b_chromium_rel_linux_valgrind_ui_3,
1362 b_chromium_dbg_linux_interactive_tests, 1377 b_chromium_dbg_linux_interactive_tests,
1363 b_chromium_dbg_xp_interactive_tests, 1378 b_chromium_dbg_xp_interactive_tests,
1364 b_chromium_rel_xp_perf_dual, 1379 b_chromium_rel_xp_perf_dual,
1365 b_chromium_rel_mac5_perf, 1380 b_chromium_rel_mac5_perf_1,
1381 b_chromium_rel_mac5_perf_2,
1366 b_chromium_rel_linux_hardy, 1382 b_chromium_rel_linux_hardy,
1367 b_chromium_rel_xp_perf_single, 1383 b_chromium_rel_xp_perf_single,
1368 b_chromium_dbg_xp_perf, 1384 b_chromium_dbg_xp_perf,
1369 b_chromium_rel_vista_perf_dual, 1385 b_chromium_rel_vista_perf_dual,
1370 b_chromium_rel_vista_perf_single, 1386 b_chromium_rel_vista_perf_single,
1371 b_chromium_dbg_vista_perf, 1387 b_chromium_dbg_vista_perf,
1372 b_webkit_rel_builder, 1388 b_webkit_rel_builder,
1373 b_webkit_dbg_builder, 1389 b_webkit_dbg_builder,
1374 b_webkit_rel, 1390 b_webkit_rel,
1375 b_webkit_dbg_1, 1391 b_webkit_dbg_1,
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1505 c['projectURL'] = config.Master.project_url 1521 c['projectURL'] = config.Master.project_url
1506 1522
1507 # the 'buildbotURL' string should point to the location where the buildbot's 1523 # the 'buildbotURL' string should point to the location where the buildbot's
1508 # internal web server (usually the html.Waterfall page) is visible. This 1524 # internal web server (usually the html.Waterfall page) is visible. This
1509 # typically uses the port number set in the Waterfall 'status' entry, but 1525 # typically uses the port number set in the Waterfall 'status' entry, but
1510 # with an externally-visible host name which the buildbot cannot figure out 1526 # with an externally-visible host name which the buildbot cannot figure out
1511 # without some help. 1527 # without some help.
1512 1528
1513 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' 1529 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/'
1514 1530
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698