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

Side by Side Diff: masters/master.tryserver.blink/slaves.cfg

Issue 2185443003: Revert of Rename existing Blink try bots to include OS version. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 4 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 slaves = [] 9 slaves = []
10 10
11 for slave in range(501, 506): 11 for slave in range(501, 506):
12 slaves.append({ 12 slaves.append({
13 'master': 'BlinkTryServer', 13 'master': 'BlinkTryServer',
14 'os': 'linux', 14 'os': 'linux',
15 'version': 'precise', 15 'version': 'precise',
16 'bits': '64', 16 'bits': '64',
17 'builder': [ 17 'builder': [
18 'linux_precise_blink_compile_dbg', 18 'linux_blink_compile_dbg',
19 'linux_precise_blink_compile_rel', 19 'linux_blink_compile_rel',
20 'linux_precise_blink_dbg', 20 'linux_blink_dbg',
21 'linux_precise_blink_rel', 21 'linux_blink_rel',
22 ], 22 ],
23 'hostname': 'slave%d-c4' % slave, 23 'hostname': 'slave%d-c4' % slave,
24 }) 24 })
25 25
26 for slave in [601, 603, 605, 607, 609]: 26 for slave in [601, 603, 605, 607, 609]:
27 slaves.append({ 27 slaves.append({
28 'master': 'BlinkTryServer', 28 'master': 'BlinkTryServer',
29 'os': 'mac', 29 'os': 'mac',
30 'version': '10.9', 30 'version': '10.9',
31 'bits': '64', 31 'bits': '64',
32 'builder': [ 32 'builder': [
33 'mac10.9_blink_compile_dbg', 33 'mac_blink_compile_dbg',
34 'mac10.9_blink_compile_rel', 34 'mac_blink_compile_rel',
35 'mac10.9_blink_dbg', 35 'mac_blink_dbg',
36 'mac10.9_blink_rel', 36 'mac_blink_rel',
37 ], 37 ],
38 'hostname': 'vm%d-m4' % slave, 38 'hostname': 'vm%d-m4' % slave,
39 }) 39 })
40 40
41 for slave in ([106, 114, 425, 496]): 41 for slave in ([106, 114, 425, 496]):
42 slaves.append({ 42 slaves.append({
43 'master': 'BlinkTryServer', 43 'master': 'BlinkTryServer',
44 'os': 'win', 44 'os': 'win',
45 'version': 'win7', 45 'version': 'win7',
46 'bits': '64', 46 'bits': '64',
47 'builder': [ 47 'builder': [
48 'win7_blink_compile_dbg', 48 'win_blink_compile_dbg',
49 'win7_blink_compile_rel', 49 'win_blink_compile_rel',
50 'win7_blink_dbg', 50 'win_blink_dbg',
51 'win7_blink_rel', 51 'win_blink_rel',
52 ], 52 ],
53 'hostname': 'vm%d-m4' % slave, 53 'hostname': 'vm%d-m4' % slave,
54 }) 54 })
OLDNEW
« no previous file with comments | « masters/master.tryserver.blink/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