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

Side by Side Diff: masters/master.chromium.swarm/slaves.cfg

Issue 1059063002: Add a Win Clang deterministic builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Remove the old Windows builder. Created 5 years, 8 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 3
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 # See master.experimental/slaves.cfg for documentation. 8 # See master.experimental/slaves.cfg for documentation.
9 9
10 heartbeat_slaves = [ 10 heartbeat_slaves = [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 'master': 'ChromiumSwarm', 64 'master': 'ChromiumSwarm',
65 'builder': 'Mac Swarm Tests (dbg)', 65 'builder': 'Mac Swarm Tests (dbg)',
66 'hostname': 'vm601-m1', 66 'hostname': 'vm601-m1',
67 'os': 'mac', 67 'os': 'mac',
68 'version': '10.8', 68 'version': '10.8',
69 'bits': '64', 69 'bits': '64',
70 }, 70 },
71 { 71 {
72 'master': 'ChromiumSwarm', 72 'master': 'ChromiumSwarm',
73 'builder': 'Windows deterministic build', 73 'builder': 'Windows deterministic build',
74 'hostname': 'vm819-m1',
75 'os': 'win',
76 'version': 'win7',
77 'bits': '64',
78 },
79 {
80 'master': 'ChromiumSwarm',
81 'builder': 'Windows deterministic build',
82 'hostname': 'win12-c1', 74 'hostname': 'win12-c1',
83 'os': 'win', 75 'os': 'win',
84 'version': 'win7', 76 'version': 'win7',
85 'bits': '64', 77 'bits': '64',
86 }, 78 },
87 { 79 {
88 'master': 'ChromiumSwarm', 80 'master': 'ChromiumSwarm',
89 'builder': 'Windows deterministic build', 81 'builder': 'Windows Clang deterministic build',
90 'hostname': 'win13-c1', 82 'hostname': 'win13-c1',
91 'os': 'win', 83 'os': 'win',
92 'version': 'win7', 84 'version': 'win7',
93 'bits': '64', 85 'bits': '64',
94 }, 86 },
95 { 87 {
96 'master': 'ChromiumSwarm', 88 'master': 'ChromiumSwarm',
97 'builder': 'Linux deterministic build', 89 'builder': 'Linux deterministic build',
98 'hostname': 'slave0-c1', 90 'hostname': 'slave0-c1',
99 'os': 'linux', 91 'os': 'linux',
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 'hostname': 'vm%d-m1' % i, 138 'hostname': 'vm%d-m1' % i,
147 'builder': 'mac', 139 'builder': 'mac',
148 'os': 'mac', 140 'os': 'mac',
149 'version': '10.8', 141 'version': '10.8',
150 'bits': '64', 142 'bits': '64',
151 } for i in [613, 625, 637, 639, 648] 143 } for i in [613, 625, 637, 639, 648]
152 ] 144 ]
153 145
154 slaves = ( 146 slaves = (
155 heartbeat_slaves + real_slaves + win_slaves + linux_slaves + mac_vm_slaves) 147 heartbeat_slaves + real_slaves + win_slaves + linux_slaves + mac_vm_slaves)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698