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

Side by Side Diff: masters/master.chromium.webrtc/master_win_cfg.py

Issue 1393893006: WebRTC: Refactor builder configs to reduce duplication. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Sorted alphabetically Created 5 years, 2 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
« no previous file with comments | « masters/master.chromium.webrtc/master_mac_cfg.py ('k') | 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
(Empty)
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from buildbot.changes.filter import ChangeFilter
6 from buildbot.schedulers.basic import SingleBranchScheduler
7
8 from master.factory import annotator_factory
9
10 m_annotator = annotator_factory.AnnotatorFactory()
11
12 def Update(c):
13 c['schedulers'].extend([
14 SingleBranchScheduler(name='win_rel_scheduler',
15 change_filter=ChangeFilter(project='chromium',
16 branch='master'),
17 treeStableTimer=60,
18 builderNames=['Win Builder']),
19 ])
20 specs = [
21 {'name': 'Win Builder'},
22 {'name': 'WinXP Tester'},
23 {'name': 'Win7 Tester'},
24 {'name': 'Win8 Tester'},
25 {'name': 'Win10 Tester'},
26 ]
27
28 c['builders'].extend([
29 {
30 'name': spec['name'],
31 'factory': m_annotator.BaseFactory('webrtc/chromium'),
32 'category': 'win',
33 'notify_on_missing': True,
34 } for spec in specs
35 ])
OLDNEW
« no previous file with comments | « masters/master.chromium.webrtc/master_mac_cfg.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698