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

Side by Side Diff: masters/master.chromium.webrtc/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, 11 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
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 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 master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
(...skipping 12 matching lines...) Expand all
23 S('linux_rel_scheduler', branch='src', treeStableTimer=60) 23 S('linux_rel_scheduler', branch='src', treeStableTimer=60)
24 T('linux_rel_trigger') 24 T('linux_rel_trigger')
25 25
26 chromium_rel_archive = master_config.GetGSUtilUrl('chromium-webrtc', 26 chromium_rel_archive = master_config.GetGSUtilUrl('chromium-webrtc',
27 'Linux Builder') 27 'Linux Builder')
28 tests = ['pyauto_webrtc_tests'] 28 tests = ['pyauto_webrtc_tests']
29 29
30 defaults['category'] = 'linux' 30 defaults['category'] = 'linux'
31 31
32 B('Linux Builder', 'linux_rel_factory', scheduler='linux_rel_scheduler', 32 B('Linux Builder', 'linux_rel_factory', scheduler='linux_rel_scheduler',
33 builddir='chromium-webrtc-rel-linux-builder', notify_on_missing=True) 33 notify_on_missing=True)
34 F('linux_rel_factory', linux().ChromiumWebRTCLatestFactory( 34 F('linux_rel_factory', linux().ChromiumFactory(
35 slave_type='Builder', 35 slave_type='Builder',
36 target='Release', 36 target='Release',
37 options=['--compiler=goma', 'chromium_builder_webrtc'], 37 options=['--compiler=goma', 'chromium_builder_webrtc'],
38 factory_properties={ 38 factory_properties={
39 'trigger': 'linux_rel_trigger', 39 'trigger': 'linux_rel_trigger',
40 'build_url': chromium_rel_archive, 40 'build_url': chromium_rel_archive,
41 })) 41 }))
42 42
43 B('Linux Tester', 'linux_tester_factory', scheduler='linux_rel_trigger') 43 B('Linux Tester', 'linux_tester_factory', scheduler='linux_rel_trigger')
44 F('linux_tester_factory', linux_tester().ChromiumWebRTCLatestFactory( 44 F('linux_tester_factory', linux_tester().ChromiumFactory(
45 slave_type='Tester', 45 slave_type='Tester',
46 build_url=chromium_rel_archive, 46 build_url=chromium_rel_archive,
47 tests=tests, 47 tests=tests,
48 factory_properties={ 48 factory_properties={
49 'use_xvfb_on_linux': True, 49 'use_xvfb_on_linux': True,
50 'show_perf_results': True, 50 'show_perf_results': True,
51 'halt_on_missing_build': True, 51 'halt_on_missing_build': True,
52 'perf_id': 'chromium-webrtc-rel-linux', 52 'perf_id': 'chromium-webrtc-rel-linux',
53 })) 53 }))
54 54
55 def Update(config, active_master, c): 55 def Update(config, active_master, c):
56 helper.Update(c) 56 helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.webrtc/master_cros_cfg.py ('k') | masters/master.chromium.webrtc/master_mac_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698