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

Side by Side Diff: masters/master.tryserver.v8/master.cfg

Issue 1819613002: Flip remaining chromium_gn bots to the chromium recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: add new expectation files 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import os 6 import os
7 7
8 from common import chromium_utils 8 from common import chromium_utils
9 9
10 from master import master_utils 10 from master import master_utils
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 ('v8_swarming_staging', 'swarming_staging') 96 ('v8_swarming_staging', 'swarming_staging')
97 ] 97 ]
98 ] 98 ]
99 99
100 # ---------------------------------------------------------------------------- 100 # ----------------------------------------------------------------------------
101 # CHROMIUM BUILDER DEFINITIONS 101 # CHROMIUM BUILDER DEFINITIONS
102 102
103 c['builders'].extend([ 103 c['builders'].extend([
104 { 104 {
105 'name': 'v8_linux_chromium_gn_rel', 105 'name': 'v8_linux_chromium_gn_rel',
106 'factory': m_annotator.BaseFactory('chromium_gn'), 106 'factory': m_annotator.BaseFactory('chromium_trybot'),
107 'auto_reboot' : True, 107 'auto_reboot' : True,
108 }, 108 },
109 { 109 {
110 'name': 'v8_android_chromium_gn_dbg', 110 'name': 'v8_android_chromium_gn_dbg',
111 'factory': m_annotator.BaseFactory('chromium_gn'), 111 'factory': m_annotator.BaseFactory('chromium_trybot'),
112 'auto_reboot' : True, 112 'auto_reboot' : True,
113 }, 113 },
114 { 114 {
115 'name': 'v8_linux_blink_rel', 115 'name': 'v8_linux_blink_rel',
116 'factory': m_annotator.BaseFactory('chromium_trybot'), 116 'factory': m_annotator.BaseFactory('chromium_trybot'),
117 'auto_reboot' : True, 117 'auto_reboot' : True,
118 }, 118 },
119 ]) 119 ])
120 120
121 # ---------------------------------------------------------------------------- 121 # ----------------------------------------------------------------------------
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 c['logHorizon'] = 2000 244 c['logHorizon'] = 2000
245 # Must be at least 2x the number of slaves. 245 # Must be at least 2x the number of slaves.
246 c['eventHorizon'] = 60 246 c['eventHorizon'] = 60
247 # Must be at least 2x the number of on-going builds. 247 # Must be at least 2x the number of on-going builds.
248 c['buildCacheSize'] = 60 248 c['buildCacheSize'] = 60
249 249
250 ####### PROJECT IDENTITY 250 ####### PROJECT IDENTITY
251 251
252 c['projectName'] = ActiveMaster.project_name 252 c['projectName'] = ActiveMaster.project_name
253 c['projectURL'] = config.Master.project_url 253 c['projectURL'] = config.Master.project_url
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698