OLD | NEW |
---|---|
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 Loading... | |
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) |
OLD | NEW |