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

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

Issue 2429443002: Replace linux_chromium_headless_dbg with linux_chromium_headless_rel (Closed)
Patch Set: Created 4 years, 2 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 # 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 'master': 'TryServerChromiumLinux', 169 'master': 'TryServerChromiumLinux',
170 'os': 'linux', 170 'os': 'linux',
171 'version': 'precise', 171 'version': 'precise',
172 'bits': '64', 172 'bits': '64',
173 'builder': ['linux_layout_tests_slimming_paint_v2'], 173 'builder': ['linux_layout_tests_slimming_paint_v2'],
174 'hostname': 'slave775-c4', 174 'hostname': 'slave775-c4',
175 'pool': 'linux_layout_tests_slimming_paint_v2', 175 'pool': 'linux_layout_tests_slimming_paint_v2',
176 } 176 }
177 ]) 177 ])
178 178
179 # Slaves for linux_chromium_headless_dbg. 179 # Slaves for linux_chromium_headless_rel.
180 headless_slaves = [426, 497, 776, 864, 865, 872] + range(1069, 1098) 180 headless_slaves = [426, 497, 776, 864, 865, 872] + range(1069, 1098)
181 for slave in headless_slaves: 181 for slave in headless_slaves:
182 result.append({ 182 result.append({
183 'master': 'TryServerChromiumLinux', 183 'master': 'TryServerChromiumLinux',
184 'os': 'linux', 184 'os': 'linux',
185 'version': 'trusty', 185 'version': 'trusty',
186 'bits': 64, 186 'bits': 64,
187 'builder': ['linux_chromium_headless_dbg'], 187 'builder': ['linux_chromium_headless_rel'],
188 'hostname': 'slave%d-c4' % slave, 188 'hostname': 'slave%d-c4' % slave,
189 'pool': 'linux_chromium_headless_dbg', 189 'pool': 'linux_chromium_headless_rel',
190 }) 190 })
191 191
192 return result 192 return result
193 193
194 194
195 slaves = linux() 195 slaves = linux()
OLDNEW
« no previous file with comments | « masters/master.tryserver.chromium.linux/master.cfg ('k') | scripts/slave/recipe_modules/chromium_tests/trybots.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698