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

Side by Side Diff: masters/master.tryserver.chromium.linux/slaves.cfg

Issue 933843003: Add a CQ tester (which will start as experimental) with N5's on L. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Make the CQ bot a rel tester. Created 5 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 # -*- 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 # See master.experimental/slaves.cfg for documentation. 7 # See master.experimental/slaves.cfg for documentation.
8 8
9 def linux(): 9 def linux():
10 linux_arm_testers = [9] 10 linux_arm_testers = [9]
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 'master': 'TryServerChromiumLinux', 180 'master': 'TryServerChromiumLinux',
181 'builder': ['android_dbg_tests_recipe', 181 'builder': ['android_dbg_tests_recipe',
182 'android_rel_tests_recipe', 182 'android_rel_tests_recipe',
183 'android_fyi_dbg_tests_recipe', 183 'android_fyi_dbg_tests_recipe',
184 'linux_android_dbg_ng', 184 'linux_android_dbg_ng',
185 'linux_android_rel_ng'], 185 'linux_android_rel_ng'],
186 'hostname': 'build%d-a4' % i, 186 'hostname': 'build%d-a4' % i,
187 'os': 'linux', 187 'os': 'linux',
188 'version': 'precise', 188 'version': 'precise',
189 'bits': '64', 189 'bits': '64',
190 } for i in range(100,139+1) 190 } for i in range(100,138+1)
191 ] 191 ]
192 192
193 amp_slaves = [ 193 amp_slaves = [
194 { 194 {
195 'master': 'TryServerChromiumLinux', 195 'master': 'TryServerChromiumLinux',
196 'builder': 'android_amp_rel_tests_recipe', 196 'builder': 'android_amp_rel_tests_recipe',
197 'hostname': 'build%d-a95' % i, 197 'hostname': 'build%d-a95' % i,
198 'os': 'linux', 198 'os': 'linux',
199 'version': 'precise', 199 'version': 'precise',
200 'bits': '64', 200 'bits': '64',
201 } for i in (17, 18, 30, 40, 48, 61) 201 } for i in (17, 18, 30, 40, 48, 61)
202 ] 202 ]
203 203
204 aosp_slaves = [ 204 aosp_slaves = [
205 { 205 {
206 'master': 'TryServerChromiumLinux', 206 'master': 'TryServerChromiumLinux',
207 'builder': 'android_aosp', 207 'builder': 'android_aosp',
208 'hostname': 'slave%d-c4' % i, 208 'hostname': 'slave%d-c4' % i,
209 'os': 'linux', 209 'os': 'linux',
210 'version': 'precise', 210 'version': 'precise',
211 'bits': '64', 211 'bits': '64',
212 } for i in range(520, 540) 212 } for i in range(520, 540)
213 ] 213 ]
214 214
215 return compile_slaves + test_slaves + amp_slaves + aosp_slaves 215 n5_experiment = [
216 {
217 'master': 'TryServerChromiumLinux',
218 'builder': 'android_n5_rel_tests_recipe',
219 'hostname': 'build139-a4',
220 'os': 'linux',
221 'version': 'precise',
222 'bits': '64',
223 }
224 ]
225
226 return compile_slaves + test_slaves + amp_slaves + aosp_slaves + n5_experiment
216 227
217 228
218 slaves = linux() + android() 229 slaves = linux() + android()
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.linux/master.cfg ('k') | scripts/slave/recipes/android/tester.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698