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

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

Issue 2051613002: Switch Android GPU bots to Release from Debug. (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 (c) 2015 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2015 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 os 10 import os
(...skipping 25 matching lines...) Expand all
36 ####### CHANGESOURCES 36 ####### CHANGESOURCES
37 37
38 c['change_source'] = [] 38 c['change_source'] = []
39 39
40 ####### BUILDERS 40 ####### BUILDERS
41 41
42 c['builders'] = [] 42 c['builders'] = []
43 43
44 # ANGLE Android bots 44 # ANGLE Android bots
45 c['builders'].append({ 45 c['builders'].append({
46 'name': 'android_angle_dbg_ng', 46 'name': 'android_angle_rel_ng',
47 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), 47 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600),
48 # Share build directory with compatible existing builders to save space. 48 # Share build directory with compatible existing builders to save space.
49 'slavebuilddir': 'android', 49 'slavebuilddir': 'android',
50 }) 50 })
51 51
52 # ANGLE linux bots 52 # ANGLE linux bots
53 c['builders'].append({ 53 c['builders'].append({
54 'name': 'linux_angle_rel_ng', 54 'name': 'linux_angle_rel_ng',
55 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), 55 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600),
56 # Share build directory with compatible existing builders to save space. 56 # Share build directory with compatible existing builders to save space.
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 130
131 ####### SCHEDULERS 131 ####### SCHEDULERS
132 132
133 # Configure the Schedulers; 133 # Configure the Schedulers;
134 # Main Tryscheduler for the try queue. groups is defined in the loop above. 134 # Main Tryscheduler for the try queue. groups is defined in the loop above.
135 c['schedulers'] = [] 135 c['schedulers'] = []
136 136
137 c['schedulers'].append(TryJobGerritScheduler( 137 c['schedulers'].append(TryJobGerritScheduler(
138 name='angle-gerrit', 138 name='angle-gerrit',
139 default_builder_names=[ 139 default_builder_names=[
140 'android_angle_dbg_ng', 140 'android_angle_rel_ng',
141 'linux_angle_rel_ng', 141 'linux_angle_rel_ng',
142 'linux_angle_dbg_ng', 142 'linux_angle_dbg_ng',
143 'mac_angle_rel_ng', 143 'mac_angle_rel_ng',
144 'mac_angle_dbg_ng', 144 'mac_angle_dbg_ng',
145 'win_angle_rel_ng', 145 'win_angle_rel_ng',
146 'win_angle_dbg_ng', 146 'win_angle_dbg_ng',
147 'win_angle_x64_rel_ng', 147 'win_angle_x64_rel_ng',
148 ], 148 ],
149 gerrit_host=ActiveMaster.gerrit_host, 149 gerrit_host=ActiveMaster.gerrit_host,
150 gerrit_projects=['angle/angle'], 150 gerrit_projects=['angle/angle'],
(...skipping 29 matching lines...) Expand all
180 c['logCompressionLimit'] = False 180 c['logCompressionLimit'] = False
181 181
182 # Adjust the buildCaches to be 3x the number of slaves per builder. 182 # Adjust the buildCaches to be 3x the number of slaves per builder.
183 c['autoBuildCacheRatio'] = 3 183 c['autoBuildCacheRatio'] = 3
184 184
185 ####### PROJECT IDENTITY 185 ####### PROJECT IDENTITY
186 186
187 # The 'projectURL' string will be used to provide a link 187 # The 'projectURL' string will be used to provide a link
188 # from buildbot HTML pages to your project's home page. 188 # from buildbot HTML pages to your project's home page.
189 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 189 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
OLDNEW
« no previous file with comments | « masters/master.chromium.gpu.fyi/slaves.cfg ('k') | masters/master.tryserver.chromium.angle/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698