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

Side by Side Diff: masters/master.chromiumos.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
« no previous file with comments | « masters/master.chromium.win/slaves.cfg ('k') | masters/master.tryserver.chromium/master.cfg » ('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 unused_R410_12G = [] 10 unused_R410_12G = []
11 unused_R815_64G = [] 11 unused_R815_64G = []
12 unused_R410_64G = [] 12 unused_R410_64G = []
13 unused_R720_64G = [128, 137] 13 unused_R720_64G = [128, 137]
14 unused_R720_128G = [] 14 unused_R720_128G = []
15 15
16 linux_build_unused = [ 16 linux_build_unused = [
17 { 17 {
18 'master': 'ChromiumOSUnused', 18 'master': 'ChromiumOSUnused',
19 'hostname': 'build%d-m2' % i, 19 'hostname': 'build%d-m2' % i,
20 'os': 'linux', 20 'os': 'linux',
21 } for i in (unused_R410_12G + unused_R815_64G + unused_R410_64G + 21 } for i in (unused_R410_12G + unused_R815_64G + unused_R410_64G +
22 unused_R720_64G + unused_R720_128G) 22 unused_R720_64G + unused_R720_128G)
23 ] 23 ]
24 24
25 win_build_unused = [
26 {
27 'master': 'ChromiumWin',
ghost stip (do not use) 2013/11/12 20:06:48 when you move this over to master.chromiumos.unuse
jam 2013/11/12 20:39:31 Done.
28 'hostname': 'build60-m1',
29 'os': 'win',
30 'version': '2008',
31 'bits': '64',
32 }
33 ]
34
25 linux_vm_unused = [ 35 linux_vm_unused = [
26 { 36 {
27 'master': 'ChromiumOSUnused', 37 'master': 'ChromiumOSUnused',
28 'hostname': 'vm%d-m2' % i, 38 'hostname': 'vm%d-m2' % i,
29 'os': 'linux', 39 'os': 'linux',
30 } for i in [1, 18] + range(21, 24) 40 } for i in [1, 18] + range(21, 24)
31 ] 41 ]
32 42
43 win_vm_unused = [
44 {
45 'master': 'ChromiumWin',
46 'hostname': 'vm%d-m1' % i,
47 'os': 'win',
48 'version': 'win7',
49 'bits': '64',
50 } for i in [470, 486, 503]
51 ]
52
33 administrative = [ 53 administrative = [
34 { 54 {
35 'master': 'ChromiumOSUnused', 55 'master': 'ChromiumOSUnused',
36 'hostname': s, 56 'hostname': s,
37 'os': 'linux', 57 'os': 'linux',
38 } for s in ['build13-m2'] 58 } for s in ['build13-m2']
39 ] 59 ]
40 60
41 slaves = linux_build_unused + linux_vm_unused + administrative 61 slaves = linux_build_unused + win_build_unused + linux_vm_unused +
62 win_vm_unused + administrative
OLDNEW
« no previous file with comments | « masters/master.chromium.win/slaves.cfg ('k') | masters/master.tryserver.chromium/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698