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

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: Added LKGR lookup step Created 5 years, 1 month 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 | « 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 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 'Linux32 ARM', 18 'Linux32 ARM',
19 'Linux64 Release (swarming)', 19 'Linux64 Release (swarming)',
20 'Linux Tsan v2 (parallel)', 20 'Linux Tsan v2 (parallel)',
21 ]), 21 ]),
22 # Run WebRTC DEPS roller every EMEA morning at 4am, 12pm and 8pm. 22 # Roll Chromium+WebRTC DEPS every EMEA morning at 4am, 12pm and 8pm.
23 Nightly( 23 Nightly(
24 name='webrtc_deps', 24 name='webrtc_deps',
25 branch=None, 25 branch=None,
26 builderNames=['Auto-roll - WebRTC DEPS'], 26 builderNames=[
27 'Auto-roll - Chromium DEPS',
28 'Auto-roll - WebRTC DEPS',
29 ],
27 hour=[19,3,11], 30 hour=[19,3,11],
28 ), 31 ),
29 ]) 32 ])
30 33
31 specs = [ 34 specs = [
32 { 35 {
33 'name': 'Linux32 ARM', 36 'name': 'Linux32 ARM',
34 'slavebuilddir': 'linux_arm', 37 'slavebuilddir': 'linux_arm',
35 }, 38 },
36 { 39 {
37 'name': 'Linux64 GCC', 40 'name': 'Linux64 GCC',
38 'slavebuilddir': 'linux_gcc', 41 'slavebuilddir': 'linux_gcc',
39 }, 42 },
40 { 43 {
41 'name': 'Linux Tsan v2 (parallel)', 44 'name': 'Linux Tsan v2 (parallel)',
42 'slavebuilddir': 'linux_tsan2', 45 'slavebuilddir': 'linux_tsan2',
43 }, 46 },
44 { 47 {
45 'name': 'Linux64 Release (swarming)', 48 'name': 'Linux64 Release (swarming)',
46 'slavebuilddir': 'linux_swarming', 49 'slavebuilddir': 'linux_swarming',
47 }, 50 },
48 { 51 {
52 'name': 'Auto-roll - Chromium DEPS',
53 'recipe': 'webrtc/auto_roll_chromium_deps',
54 'slavebuilddir': 'linux_chromium_autoroll',
55 },
56 {
49 'name': 'Auto-roll - WebRTC DEPS', 57 'name': 'Auto-roll - WebRTC DEPS',
50 'recipe': 'webrtc/auto_roll_webrtc_deps', 58 'recipe': 'webrtc/auto_roll_webrtc_deps',
51 'slavebuilddir': 'linux_autoroll', 59 'slavebuilddir': 'linux_autoroll',
52 }, 60 },
53 ] 61 ]
54 62
55 c['builders'].extend([ 63 c['builders'].extend([
56 { 64 {
57 'name': spec['name'], 65 'name': spec['name'],
58 'factory': m_annotator.BaseFactory(spec.get('recipe', 66 'factory': m_annotator.BaseFactory(spec.get('recipe',
59 'webrtc/standalone')), 67 'webrtc/standalone')),
60 'notify_on_missing': True, 68 'notify_on_missing': True,
61 'category': 'linux', 69 'category': 'linux',
62 'slavebuilddir': spec['slavebuilddir'], 70 'slavebuilddir': spec['slavebuilddir'],
63 'auto_reboot': False, 71 'auto_reboot': False,
64 } for spec in specs 72 } for spec in specs
65 ]) 73 ])
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