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

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

Issue 66063002: Remove Win Aura bots from the buildbot and tryservers since they're now redundant as trunk Windows … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: 80 cols Created 7 years, 1 month 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 | Annotate | Revision Log
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 mac_mini_unused = [ 10 mac_mini_unused = [
(...skipping 18 matching lines...) Expand all
29 'hostname': 'build%d-m4' % i, 29 'hostname': 'build%d-m4' % i,
30 'os': 'win', 30 'os': 'win',
31 } for i in [] 31 } for i in []
32 ] 32 ]
33 33
34 win_vm_unused = [ 34 win_vm_unused = [
35 { 35 {
36 'master': 'TryserverUnused', 36 'master': 'TryserverUnused',
37 'hostname': 'vm%d-m4' % i, 37 'hostname': 'vm%d-m4' % i,
38 'os': 'win', 38 'os': 'win',
39 } for i in [] 39 } for i in (range(164, 207) + range(208, 211) + range(212, 215) +
40 range(216, 219) + range(220, 223) + range(224, 227) +
41 range(228, 231))
40 ] 42 ]
41 43
42 linux_build_unused = [ 44 linux_build_unused = [
43 { 45 {
44 'master': 'TryserverUnused', 46 'master': 'TryserverUnused',
45 'hostname': 'build%d-m4' % i, 47 'hostname': 'build%d-m4' % i,
46 'os': 'linux', 48 'os': 'linux',
47 } for i in [] 49 } for i in []
48 ] 50 ]
49 51
50 linux_precise_vm_unused = [ 52 linux_precise_vm_unused = [
51 { 53 {
52 'master': 'TryserverUnused', 54 'master': 'TryserverUnused',
53 'hostname': 'vm%d-m4' % i, 55 'hostname': 'vm%d-m4' % i,
54 'os': 'linux', 56 'os': 'linux',
55 } for i in [501] 57 } for i in [501]
56 ] 58 ]
57 59
58 # See Issue #244518. 60 # See Issue #244518.
59 cros_amd64_unused = [ 61 cros_amd64_unused = [
60 { 62 {
61 'master': 'TryserverUnused', 63 'master': 'TryserverUnused',
62 'hostname': 'build%d-m4' % i, 64 'hostname': 'build%d-m4' % i,
63 'os': 'linux', 65 'os': 'linux',
64 } for i in range(2, 5) + range(6, 10) 66 } for i in range(2, 5) + range(6, 10)
65 ] 67 ]
66 68
67 slaves = (mac_mini_unused + mac_vm_unused + win_build_unused + win_vm_unused + 69 slaves = (mac_mini_unused + mac_vm_unused + win_build_unused + win_vm_unused +
68 linux_build_unused + linux_precise_vm_unused + cros_amd64_unused) 70 linux_build_unused + linux_precise_vm_unused + cros_amd64_unused)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698