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

Side by Side Diff: masters/master.tryserver.chromium.perf/master.cfg

Issue 2094613002: Don't require a .dbconfig file on any masters. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 # Copyright 2014 The Chromium Authors. All rights reserved. 3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # READ THIS: 7 # READ THIS:
8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure
9 9
10 import socket 10 import socket
(...skipping 13 matching lines...) Expand all
24 ActiveMaster = master_site_config.ChromiumPerfTryServer 24 ActiveMaster = master_site_config.ChromiumPerfTryServer
25 25
26 26
27 MAIL_NOTIFIER = ActiveMaster.is_production_host 27 MAIL_NOTIFIER = ActiveMaster.is_production_host
28 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host 28 LISTEN_TO_SVN = ActiveMaster.svn_url and ActiveMaster.is_production_host
29 29
30 # This is the dictionary that the buildmaster pays attention to. We also use 30 # This is the dictionary that the buildmaster pays attention to. We also use
31 # a shorter alias to save typing. 31 # a shorter alias to save typing.
32 c = BuildmasterConfig = {} 32 c = BuildmasterConfig = {}
33 33
34 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) 34 config.DatabaseSetup(c)
35 35
36 c['change_source'] = [] 36 c['change_source'] = []
37 37
38 # Avoid merging requests. 38 # Avoid merging requests.
39 c['mergeRequests'] = False 39 c['mergeRequests'] = False
40 40
41 c['builders'] = [] 41 c['builders'] = []
42 42
43 _category_index = enumerate( 43 _category_index = enumerate(
44 ('builders', 'android', 'webview', 'windows', 'mac', 'linux', 'cq', 'fyi')) 44 ('builders', 'android', 'webview', 'windows', 'mac', 'linux', 'cq', 'fyi'))
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 # Must be at least 2x the number of slaves. 213 # Must be at least 2x the number of slaves.
214 c['eventHorizon'] = 200 214 c['eventHorizon'] = 200
215 c['logCompressionLimit'] = False 215 c['logCompressionLimit'] = False
216 216
217 # Adjust the buildCaches to be 3x the number of slaves per builder. 217 # Adjust the buildCaches to be 3x the number of slaves per builder.
218 c['autoBuildCacheRatio'] = 3 218 c['autoBuildCacheRatio'] = 3
219 219
220 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 220 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
221 221
222 # vi: set ts=4 sts=2 sw=2 et: 222 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.mac/master.cfg ('k') | masters/master.tryserver.chromium.win/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698