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

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

Issue 2330003002: Add linux_chromium_headless_dbg trybot builder and slaves (Closed)
Patch Set: config headless slaves separately Created 4 years, 3 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
« no previous file with comments | « masters/master.tryserver.chromium.linux/master.cfg ('k') | no next file » | 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 # 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 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy') 10 chromeos_boards = ('x86-generic', 'amd64-generic', 'daisy')
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 'master': 'TryServerChromiumLinux', 181 'master': 'TryServerChromiumLinux',
182 'os': 'linux', 182 'os': 'linux',
183 'version': 'precise', 183 'version': 'precise',
184 'bits': '64', 184 'bits': '64',
185 'builder': ['linux_layout_tests_slimming_paint_v2'], 185 'builder': ['linux_layout_tests_slimming_paint_v2'],
186 'hostname': 'slave775-c4', 186 'hostname': 'slave775-c4',
187 'pool': 'linux_layout_tests_slimming_paint_v2', 187 'pool': 'linux_layout_tests_slimming_paint_v2',
188 } 188 }
189 ]) 189 ])
190 190
191 # Slaves for linux_chromium_headless_dbg.
192 headless_slaves = [426, 497, 776, 864, 865, 872] + range(1069, 1098)
193 for slave in headless_slaves:
194 result.append({
195 'master': 'TryServerChromiumLinux',
196 'os': 'linux',
197 'version': 'trusty',
198 'bits': 64,
199 'builder': ['linux_chromium_headless_dbg'],
200 'hostname': 'slave%d-c4' % slave,
201 'pool': 'linux_chromium_headless_dbg',
202 })
203
191 return result 204 return result
192 205
193 206
194 slaves = linux() 207 slaves = linux()
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.linux/master.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698