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

Side by Side Diff: masters/master.client.syzygy/master_win_official_cfg.py

Issue 7670026: Fix continuous and official builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 9 years, 4 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from buildbot.scheduler import Scheduler 5 from buildbot.scheduler import Scheduler
6 from buildbot.changes.filter import ChangeFilter 6 from buildbot.changes.filter import ChangeFilter
7 7
8 from master.factory import syzygy_factory 8 from master.factory import syzygy_factory
9 9
10 defaults = { 'category': 'official' } 10 defaults = { 'category': 'official' }
(...skipping 24 matching lines...) Expand all
35 # 35 #
36 # Windows official Release builder 36 # Windows official Release builder
37 # 37 #
38 official_factory = win().SyzygyFactory(official_release=True) 38 official_factory = win().SyzygyFactory(official_release=True)
39 39
40 official_builder = { 40 official_builder = {
41 'name': 'Syzygy Official', 41 'name': 'Syzygy Official',
42 'factory': official_factory, 42 'factory': official_factory,
43 'schedulers': 'syzygy_version', 43 'schedulers': 'syzygy_version',
44 'auto_reboot': False, 44 'auto_reboot': False,
45 'category': 'official',
Roger McFarlane (Chromium) 2011/08/17 14:59:49 not picked up from defaults?
Sigurður Ásgeirsson 2011/08/17 15:08:13 Defaults is no longer used - it's a decoy. Removed
45 } 46 }
46 47
47 48
48 def Update(config, active_master, c): 49 def Update(config, active_master, c):
49 c['schedulers'].append(official_scheduler) 50 c['schedulers'].append(official_scheduler)
50 c['builders'].append(official_builder) 51 c['builders'].append(official_builder)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698