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

Side by Side Diff: masters/master.chromiumos.chromium/master_perf_cfg.py

Issue 1763583002: CrOS: Rename chromiumos.chromium builders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 9 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 chromeos_factory 6 from master.factory import chromeos_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
11 B = helper.Builder 11 B = helper.Builder
12 F = helper.Factory 12 F = helper.Factory
13 13
14 # CrOS perf bots below. 14 # CrOS perf bots below.
15 defaults['category'] = '5chromiumos perf' 15 defaults['category'] = '5chromiumos perf'
16 16
17 _PERF_SCHEDULER_NAME = 'chromium_src_perf' 17 _PERF_SCHEDULER_NAME = 'chromium_src_perf'
18 helper.Scheduler(_PERF_SCHEDULER_NAME, branch='master', treeStableTimer=60) 18 helper.Scheduler(_PERF_SCHEDULER_NAME, branch='master', treeStableTimer=60)
19 19
20 def Builder(sname, flavor, root, board): 20 def Builder(board, root):
21 fname = '%s-%s' % (sname, flavor) 21 config = '%s-telemetry' % (board,)
22 B('Chromium OS (%s) Perf' % sname, 22 B(config,
23 factory=fname, 23 factory=config,
24 gatekeeper='crosperf', 24 gatekeeper='crosperf',
25 builddir='%s-%s-telemetry' % (flavor, board), 25 builddir=config,
26 scheduler=_PERF_SCHEDULER_NAME, 26 scheduler=_PERF_SCHEDULER_NAME,
27 notify_on_missing=True) 27 notify_on_missing=True)
28 F(fname, 28 F(config,
29 chromeos_factory.CbuildbotFactory( 29 chromeos_factory.CbuildbotFactory(
30 buildroot='/b/cbuild/%s' % root, 30 buildroot='/b/cbuild/%s' % root,
31 pass_revision=True, 31 pass_revision=True,
32 params='%s-telemetry' % board).get_factory()) 32 params=config).get_factory())
33 33
34 34
35 Builder('x86', 'chromium', 'shared_external', 'x86-generic') 35 Builder('x86-generic', 'shared_external')
36 Builder('amd64', 'chromium', 'shared_external', 'amd64-generic') 36 Builder('amd64-generic', 'shared_external')
37 37
38 def Update(_config, _active_master, c): 38 def Update(_config, _active_master, c):
39 return helper.Update(c) 39 return helper.Update(c)
40 40
OLDNEW
« no previous file with comments | « masters/master.chromiumos.chromium/master_chromium_cfg.py ('k') | masters/master.chromiumos.chromium/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698