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

Unified Diff: master/master_builders_cfg.py

Issue 12380071: Adding trybots for Periodic and PerCommit Housekeeper (Closed) Base URL: http://skia.googlecode.com/svn/buildbot/
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | master/skia_master_scripts/housekeeping_percommit_factory.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: master/master_builders_cfg.py
===================================================================
--- master/master_builders_cfg.py (revision 7935)
+++ master/master_builders_cfg.py (working copy)
@@ -5,11 +5,12 @@
# Sets up all the builders we want this buildbot master to run.
from skia_master_scripts import factory as skia_factory
-from skia_master_scripts import housekeeping_percommit_factory
-from skia_master_scripts import housekeeping_periodic_factory
from skia_master_scripts import utils
-from skia_master_scripts.utils import MakeBuilderSet, MakeAndroidBuilderSet, \
- MakeChromeOSBuilderSet, MakeIOSBuilderSet
+from skia_master_scripts.utils import MakeBuilderSet, \
+ MakeAndroidBuilderSet, \
+ MakeChromeOSBuilderSet, \
+ MakeIOSBuilderSet, \
+ MakeHousekeeperBuilderSet
# Directory where we want to record performance data
#
@@ -23,8 +24,6 @@
def Update(config, active_master, c):
helper = utils.SkiaHelper(defaults)
- B = helper.Builder
- F = helper.Factory
#
# Default (per-commit) Scheduler for Skia. Only use this for builders which
@@ -273,22 +272,10 @@
# House Keeping
defaults['category'] = ' housekeeping'
- B('Skia_PerCommit_House_Keeping', 'f_skia_percommit_house_keeping',
- scheduler='skia_rel')
- F('f_skia_percommit_house_keeping',
- housekeeping_percommit_factory.HouseKeepingPerCommitFactory(
- do_upload_results=do_upload_results,
- target_platform=skia_factory.TARGET_PLATFORM_LINUX,
- builder_name='Skia_PerCommit_House_Keeping',
- ).Build())
- B('Skia_Periodic_House_Keeping', 'f_skia_periodic_house_keeping',
- scheduler='skia_periodic')
- F('f_skia_periodic_house_keeping',
- housekeeping_periodic_factory.HouseKeepingPeriodicFactory(
- do_upload_results=do_upload_results,
- target_platform=skia_factory.TARGET_PLATFORM_LINUX,
- builder_name='Skia_Periodic_House_Keeping',
- ).Build())
+ MakeHousekeeperBuilderSet(
+ helper=helper,
+ do_trybots=True,
+ do_upload_results=do_upload_results)
# "Special" bots, running on Linux
defaults['category'] = 'Linux-Special'
« no previous file with comments | « no previous file | master/skia_master_scripts/housekeeping_percommit_factory.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698