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

Side by Side Diff: masters/master.client.webrtc.fyi/master_win_cfg.py

Issue 1525163005: WebRTC: Move Win Clang commit bots to client.webrtc master. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years 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 | masters/master.client.webrtc.fyi/slaves.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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.schedulers.basic import SingleBranchScheduler 5 from buildbot.schedulers.basic import SingleBranchScheduler
6 6
7 from master.factory import annotator_factory 7 from master.factory import annotator_factory
8 8
9 m_annotator = annotator_factory.AnnotatorFactory() 9 m_annotator = annotator_factory.AnnotatorFactory()
10 10
11 def Update(c): 11 def Update(c):
12 c['schedulers'].extend([ 12 c['schedulers'].extend([
13 SingleBranchScheduler(name='webrtc_windows_scheduler', 13 SingleBranchScheduler(name='webrtc_windows_scheduler',
14 branch='master', 14 branch='master',
15 treeStableTimer=0, 15 treeStableTimer=0,
16 builderNames=[ 16 builderNames=[
17 'Win32 Release (swarming)', 17 'Win32 Release (swarming)',
18 'Win32 Debug (Clang)',
19 'Win32 Release (Clang)',
20 'Win64 Debug (Clang)',
21 'Win64 Release (Clang)',
22 ]), 18 ]),
23 ]) 19 ])
24 20
25 specs = [ 21 specs = [
26 { 22 {
27 'name': 'Win32 Release (swarming)', 23 'name': 'Win32 Release (swarming)',
28 'slavebuilddir': 'win_swarming', 24 'slavebuilddir': 'win_swarming',
29 }, 25 },
30 {'name': 'Win32 Debug (Clang)', 'slavebuilddir': 'win_clang'},
31 {'name': 'Win32 Release (Clang)', 'slavebuilddir': 'win_clang'},
32 {'name': 'Win64 Debug (Clang)', 'slavebuilddir': 'win_clang'},
33 {'name': 'Win64 Release (Clang)', 'slavebuilddir': 'win_clang'},
34 ] 26 ]
35 27
36 c['builders'].extend([ 28 c['builders'].extend([
37 { 29 {
38 'name': spec['name'], 30 'name': spec['name'],
39 'factory': m_annotator.BaseFactory('webrtc/standalone'), 31 'factory': m_annotator.BaseFactory('webrtc/standalone'),
40 'notify_on_missing': True, 32 'notify_on_missing': True,
41 'category': 'win', 33 'category': 'win',
42 'slavebuilddir': spec['slavebuilddir'], 34 'slavebuilddir': spec['slavebuilddir'],
43 } for spec in specs 35 } for spec in specs
44 ]) 36 ])
OLDNEW
« no previous file with comments | « no previous file | masters/master.client.webrtc.fyi/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698