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

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

Issue 12033076: Add ChromiumWebRTC FYI waterfall (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Added master to test/masters_test.py Created 7 years, 10 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 | Annotate | Revision Log
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 master import master_config
6 from master.factory import chromium_factory
7
8 defaults = {}
9
10 helper = master_config.Helper(defaults)
11 B = helper.Builder
12 F = helper.Factory
13 S = helper.Scheduler
14 P = helper.Periodic
15
16
17 def linux():
18 return chromium_factory.ChromiumFactory('src/build', 'linux2')
19
20 S('linux_webrtc_trunk_scheduler', branch='trunk', treeStableTimer=0)
21 S('linux_webrtc_stable_scheduler', branch='stable', treeStableTimer=0)
22 P('linux_every_4_hours_scheduler', periodicBuildTimer=4*60*60)
23
24 options = ['--compiler=goma', 'chromium_builder_webrtc']
25 tests = ['pyauto_webrtc_tests']
26
27 defaults['category'] = 'linux'
28
29 B('Linux [latest WebRTC trunk]', 'linux_webrtc_trunk_factory',
30 scheduler='linux_webrtc_trunk_scheduler|linux_every_4_hours_scheduler',
31 notify_on_missing=True)
32 F('linux_webrtc_trunk_factory', linux().ChromiumWebRTCLatestTrunkFactory(
33 slave_type='BuilderTester',
34 target='Release',
35 options=options,
36 tests=tests,
37 factory_properties={
38 'use_xvfb_on_linux': True,
39 'show_perf_results': True,
40 'perf_id': 'chromium-webrtc-trunk-tot-rel-linux',
41 }))
42
43 B('Linux [latest WebRTC stable]', 'linux_webrtc_stable_factory',
44 scheduler='linux_webrtc_stable_scheduler|linux_every_4_hours_scheduler',
45 notify_on_missing=True)
46 F('linux_webrtc_stable_factory', linux().ChromiumWebRTCLatestStableFactory(
47 slave_type='BuilderTester',
48 target='Release',
49 options=options,
50 tests=tests,
51 factory_properties={
52 'use_xvfb_on_linux': True,
53 'show_perf_results': True,
54 'perf_id': 'chromium-webrtc-stable-tot-rel-linux',
55 }))
56
57
58 def Update(config, active_master, c):
59 helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.webrtc.fyi/master_cros_cfg.py ('k') | masters/master.chromium.webrtc.fyi/master_mac_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698