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

Side by Side Diff: masters/master.client.v8.fyi/master.cfg

Issue 2445193002: Change all remote run builders to use tools/build. (Closed)
Patch Set: Add recipes Created 4 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 | « masters/master.chromium/master_full_cfg.py ('k') | masters/master.tryserver.blink/master.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 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright 2015 The Chromium Authors. All rights reserved. 4 # Copyright 2015 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 from buildbot.process.properties import WithProperties 8 from buildbot.process.properties import WithProperties
9 from buildbot.scheduler import Nightly 9 from buildbot.scheduler import Nightly
10 from buildbot.scheduler import Triggerable 10 from buildbot.scheduler import Triggerable
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 ] 46 ]
47 47
48 48
49 ####### FACTORIES 49 ####### FACTORIES
50 50
51 F = annotator_factory.AnnotatorFactory().BaseFactory 51 F = annotator_factory.AnnotatorFactory().BaseFactory
52 52
53 def m_remote_run_chromium_src(recipe, **kwargs): 53 def m_remote_run_chromium_src(recipe, **kwargs):
54 return remote_run_factory.RemoteRunFactory( 54 return remote_run_factory.RemoteRunFactory(
55 active_master=ActiveMaster, 55 active_master=ActiveMaster,
56 repository='https://chromium.googlesource.com/chromium/src.git', 56 repository='https://chromium.googlesource.com/chromium/tools/build.git',
57 recipe=recipe, 57 recipe=recipe,
58 factory_properties={'path_config': 'kitchen'}, 58 factory_properties={'path_config': 'kitchen'},
59 use_gitiles=True, 59 use_gitiles=True,
60 **kwargs) 60 **kwargs)
61 61
62 62
63 ####### BUILDER SPECS 63 ####### BUILDER SPECS
64 64
65 CATEGORY_RELEASE = '1Release|release' 65 CATEGORY_RELEASE = '1Release|release'
66 CATEGORY_LAYOUT = '2Layout|chromium' 66 CATEGORY_LAYOUT = '2Layout|chromium'
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 mail_notifier_cfg.Update(config, ActiveMaster, c) 307 mail_notifier_cfg.Update(config, ActiveMaster, c)
308 308
309 # Adjust the buildCaches to be 3x the number of slaves per builder. 309 # Adjust the buildCaches to be 3x the number of slaves per builder.
310 c['autoBuildCacheRatio'] = 3 310 c['autoBuildCacheRatio'] = 3
311 311
312 312
313 ####### PROJECT IDENTITY 313 ####### PROJECT IDENTITY
314 314
315 c['projectName'] = ActiveMaster.project_name 315 c['projectName'] = ActiveMaster.project_name
316 c['projectURL'] = config.Master.project_url 316 c['projectURL'] = config.Master.project_url
OLDNEW
« no previous file with comments | « masters/master.chromium/master_full_cfg.py ('k') | masters/master.tryserver.blink/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698