OLD | NEW |
| (Empty) |
1 # -*- python -*- | |
2 # ex: set syntax=python: | |
3 | |
4 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | |
5 # Use of this source code is governed by a BSD-style license that can be | |
6 # found in the LICENSE file. | |
7 | |
8 # See master.experimental/slaves.cfg for documentation. | |
9 | |
10 | |
11 slaves = [ | |
12 ### NativeClientToolchain | |
13 # WINDOWS | |
14 { | |
15 'master': 'NativeClientToolchain', | |
16 'builder': 'win7-toolchain_x86', | |
17 'hostname': 'nacl-intel1', | |
18 'os': 'win', | |
19 'version': 'win7', | |
20 'nacl_cygwin': True, | |
21 }, | |
22 { | |
23 'master': 'NativeClientToolchain', | |
24 'builder': 'vista-toolchain_x86', | |
25 'hostname': 'codg156', | |
26 'os': 'win', | |
27 'version': 'vista', | |
28 'nacl_cygwin': True, | |
29 }, | |
30 { | |
31 'master': 'NativeClientToolchain', | |
32 'builder': 'win2003-toolchain_x86', | |
33 'hostname': 'codf31', | |
34 'os': 'win', | |
35 'version': '2003', | |
36 'nacl_cygwin': True, | |
37 }, | |
38 # MAC | |
39 { | |
40 'master': 'NativeClientToolchain', | |
41 'builder': ['mac-toolchain_x86-32'], | |
42 'hostname': 'codf95', | |
43 'os': 'mac', | |
44 'version': 'osx 10.5', | |
45 }, | |
46 { | |
47 'master': 'NativeClientToolchain', | |
48 'builder': ['mac-toolchain_x86'], | |
49 'hostname': 'codf69', | |
50 'os': 'mac', | |
51 'version': 'osx 10.5', | |
52 }, | |
53 # HARDY | |
54 { | |
55 'master': 'NativeClientToolchain', | |
56 'builder': 'hardy32-toolchain_x86', | |
57 'hostname': 'codg202', | |
58 'os': 'linux', | |
59 'version': 'hardy', | |
60 'bits': '32', | |
61 }, | |
62 { | |
63 'master': 'NativeClientToolchain', | |
64 'builder': 'hardy32-toolchain_arm-trusted', | |
65 'hostname': 'codf212', | |
66 'os': 'linux', | |
67 'version': 'hardy32', | |
68 'bits': '32', | |
69 }, | |
70 { | |
71 'master': 'NativeClientToolchain', | |
72 'builder': 'hardy64-toolchain_arm-untrusted', | |
73 'hostname': 'codg210', | |
74 'os': 'linux', | |
75 'version': 'hardy', | |
76 'bits': '64', | |
77 }, | |
78 { | |
79 'master': 'NativeClientToolchain', | |
80 'builder': 'lucid32-toolchain_arm-untrusted', | |
81 'hostname': 'codg179', | |
82 'os': 'linux', | |
83 'version': 'lucid', | |
84 'bits': '32', | |
85 }, | |
86 { | |
87 'master': 'NativeClientToolchain', | |
88 'builder': 'hardy64-glibc', | |
89 'hostname': 'codg209', | |
90 'os': 'linux', | |
91 'version': 'hardy', | |
92 'bits': '64', | |
93 }, | |
94 ] | |
OLD | NEW |