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

Side by Side Diff: masters/master.chromium.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: the real unused 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
« no previous file with comments | « no previous file | masters/master.chromium.win/master_win_cfg.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10 matching lines...) Expand all
21 'hostname': 'vm%d-m1' % i, 21 'hostname': 'vm%d-m1' % i,
22 'os': 'mac', 22 'os': 'mac',
23 } for i in [602, 622, 627, 629, 632, 636, 640, 647] 23 } for i in [602, 622, 627, 629, 632, 636, 640, 647]
24 ] 24 ]
25 25
26 win_build_unused = [ 26 win_build_unused = [
27 { 27 {
28 'master': 'ChromiumUnused', 28 'master': 'ChromiumUnused',
29 'hostname': 'build%d-m1' % i, 29 'hostname': 'build%d-m1' % i,
30 'os': 'win', 30 'os': 'win',
31 } for i in [ ] 31 } for i in [60]
32 ] 32 ]
33 33
34 win_vm_unused = [ 34 win_vm_unused = [
35 { 35 {
36 'master': 'ChromiumUnused', 36 'master': 'ChromiumUnused',
37 'hostname': 'vm%d-m1' % i, 37 'hostname': 'vm%d-m1' % i,
38 'os': 'win', 38 'os': 'win',
39 } for i in [423, 464] 39 } for i in [423, 464, 470, 486, 503]
40 ] 40 ]
41 41
42 linux_build_unused = [ 42 linux_build_unused = [
43 { 43 {
44 'master': 'ChromiumUnused', 44 'master': 'ChromiumUnused',
45 'hostname': 'build%d-m1' % i, 45 'hostname': 'build%d-m1' % i,
46 'os': 'linux', 46 'os': 'linux',
47 } for i in [ ] 47 } for i in [ ]
48 ] 48 ]
49 49
50 linux_vm_unused = [ 50 linux_vm_unused = [
51 { 51 {
52 'master': 'ChromiumUnused', 52 'master': 'ChromiumUnused',
53 'hostname': 'vm%d-m1' % i, 53 'hostname': 'vm%d-m1' % i,
54 'os': 'linux', 54 'os': 'linux',
55 } for i in [ ] 55 } for i in [ ]
56 ] 56 ]
57 57
58 slaves = (mac_mini_unused + mac_vm_unused + win_build_unused + win_vm_unused + 58 slaves = (mac_mini_unused + mac_vm_unused + win_build_unused + win_vm_unused +
59 linux_build_unused + linux_vm_unused) 59 linux_build_unused + linux_vm_unused)
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.win/master_win_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698