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

Side by Side Diff: masters/master.chromiumos.chromium/master_asan_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
« no previous file with comments | « no previous file | masters/master.chromiumos.chromium/master_chromium_cfg.py » ('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 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 ASan bots below. 14 # CrOS ASan bots below.
15 defaults['category'] = '4chromeos asan' 15 defaults['category'] = '4chromeos asan'
16 16
17 _ASAN_SCHEDULER_NAME = 'chromium_src_asan' 17 _ASAN_SCHEDULER_NAME = 'chromium_src_asan'
18 helper.Scheduler(_ASAN_SCHEDULER_NAME, branch='master', treeStableTimer=60) 18 helper.Scheduler(_ASAN_SCHEDULER_NAME, branch='master', treeStableTimer=60)
19 19
20 def Builder(dname, sname, flavor, root, board): 20 def Builder(board, root):
21 fname = '%s-%s' % (sname, flavor) 21 config = '%s-tot-asan-informational' % (board,)
22 B('%s (%s) Asan' % (dname, sname), 22 B(config,
23 factory=fname, 23 factory=config,
24 gatekeeper='crosasantest', 24 gatekeeper='crosasantest',
25 builddir='%s-tot-chromeos-%s-asan' % (flavor, board), 25 builddir=config,
26 scheduler=_ASAN_SCHEDULER_NAME, 26 scheduler=_ASAN_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-tot-asan-informational' % board).get_factory()) 32 params=config).get_factory())
33 33
34 34
35 Builder('Chromium OS', 'x86', 'chromium', 'shared_external', 'x86-generic') 35 Builder('x86-generic', 'shared_external')
36 Builder('Chromium OS', '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)
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromiumos.chromium/master_chromium_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698