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

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

Issue 1384273003: WebRTC: Bot for autorolling WebRTC+libjingle in Chromium DEPS. Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 Nightly 5 from buildbot.scheduler import Nightly
6 from buildbot.schedulers.basic import SingleBranchScheduler 6 from buildbot.schedulers.basic import SingleBranchScheduler
7 7
8 from master.factory import annotator_factory 8 from master.factory import annotator_factory
9 9
10 m_annotator = annotator_factory.AnnotatorFactory() 10 m_annotator = annotator_factory.AnnotatorFactory()
11 11
12 def Update(c): 12 def Update(c):
13 c['schedulers'].extend([ 13 c['schedulers'].extend([
14 SingleBranchScheduler(name='webrtc_linux_scheduler', 14 SingleBranchScheduler(name='webrtc_linux_scheduler',
15 branch='master', 15 branch='master',
16 treeStableTimer=0, 16 treeStableTimer=0,
17 builderNames=[ 17 builderNames=[
18 'Linux64 Release (swarming)', 18 'Linux64 Release (swarming)',
19 'Linux Tsan v2 (parallel)', 19 'Linux Tsan v2 (parallel)',
20 ]), 20 ]),
21 # Run WebRTC DEPS roller every EMEA morning at 4am, 12pm and 8pm. 21 # Roll Chromium+WebRTC DEPS every EMEA morning at 4am, 12pm and 8pm.
22 Nightly( 22 Nightly(
23 name='webrtc_deps', 23 name='webrtc_deps',
24 branch=None, 24 branch=None,
25 builderNames=['Auto-roll - WebRTC DEPS'], 25 builderNames=[
26 'Auto-roll - Chromium DEPS',
27 'Auto-roll - WebRTC DEPS',
28 ],
26 hour=[19,3,11], 29 hour=[19,3,11],
27 ), 30 ),
28 ]) 31 ])
29 32
30 specs = [ 33 specs = [
31 { 34 {
32 'name': 'Linux Tsan v2 (parallel)', 35 'name': 'Linux Tsan v2 (parallel)',
33 'slavebuilddir': 'linux_tsan2', 36 'slavebuilddir': 'linux_tsan2',
34 }, 37 },
35 { 38 {
36 'name': 'Linux64 Release (swarming)', 39 'name': 'Linux64 Release (swarming)',
37 'slavebuilddir': 'linux_swarming', 40 'slavebuilddir': 'linux_swarming',
38 }, 41 },
39 { 42 {
43 'name': 'Auto-roll - Chromium DEPS',
44 'recipe': 'webrtc/auto_roll_chromium_deps',
45 'slavebuilddir': 'linux_chromium_autoroll',
46 },
47 {
40 'name': 'Auto-roll - WebRTC DEPS', 48 'name': 'Auto-roll - WebRTC DEPS',
41 'recipe': 'webrtc/auto_roll_webrtc_deps', 49 'recipe': 'webrtc/auto_roll_webrtc_deps',
42 'slavebuilddir': 'linux_autoroll', 50 'slavebuilddir': 'linux_autoroll',
43 }, 51 },
44 ] 52 ]
45 53
46 c['builders'].extend([ 54 c['builders'].extend([
47 { 55 {
48 'name': spec['name'], 56 'name': spec['name'],
49 'factory': m_annotator.BaseFactory(spec.get('recipe', 57 'factory': m_annotator.BaseFactory(spec.get('recipe',
50 'webrtc/standalone')), 58 'webrtc/standalone')),
51 'notify_on_missing': True, 59 'notify_on_missing': True,
52 'category': 'linux', 60 'category': 'linux',
53 'slavebuilddir': spec['slavebuilddir'], 61 'slavebuilddir': spec['slavebuilddir'],
54 'auto_reboot': False, 62 'auto_reboot': False,
55 } for spec in specs 63 } for spec in specs
56 ]) 64 ])
OLDNEW
« no previous file with comments | « no previous file | masters/master.client.webrtc.fyi/slaves.cfg » ('j') | scripts/slave/recipes/webrtc/auto_roll_chromium_deps.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698