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

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

Issue 1575853002: V8 Buildbot: Stage mac for swarming. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/v8/builders.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 2013 The Chromium Authors. All rights reserved. 4 # Copyright 2013 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 slaves = [] 8 slaves = []
9 9
10 slaves.extend([ 10 slaves.extend([
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 'v8_win_rel', 66 'v8_win_rel',
67 'v8_win_rel_ng', 67 'v8_win_rel_ng',
68 'v8_win_dbg', 68 'v8_win_dbg',
69 'v8_win_compile_dbg', 69 'v8_win_compile_dbg',
70 'v8_win_nosnap_shared_compile_rel', 70 'v8_win_nosnap_shared_compile_rel',
71 'v8_win_nosnap_shared_rel', 71 'v8_win_nosnap_shared_rel',
72 'v8_win64_rel', 72 'v8_win64_rel',
73 'v8_win64_rel_ng', 73 'v8_win64_rel_ng',
74 'v8_win64_compile_rel', 74 'v8_win64_compile_rel',
75 'v8_win64_dbg', 75 'v8_win64_dbg',
76 'v8_swarming_staging',
77 ], 76 ],
78 'hostname': 'vm%d-m4' % i, 77 'hostname': 'vm%d-m4' % i,
79 'os': 'win', 78 'os': 'win',
80 'version': 'win7', 79 'version': 'win7',
81 'bits': '64', 80 'bits': '64',
82 } for i in range(204, 207) + [259, 261, 262] 81 } for i in range(204, 207) + [259, 261, 262]
83 ]) 82 ])
84 83
85 slaves.extend([ 84 slaves.extend([
86 { 85 {
87 'master': 'V8TryServer', 86 'master': 'V8TryServer',
88 'builder': [ 87 'builder': [
89 'v8_mac_rel', 88 'v8_mac_rel',
90 'v8_mac_dbg', 89 'v8_mac_dbg',
91 'v8_mac_gc_stress_dbg', 90 'v8_mac_gc_stress_dbg',
92 'v8_mac64_rel', 91 'v8_mac64_rel',
93 'v8_mac64_dbg', 92 'v8_mac64_dbg',
94 'v8_mac64_asan_rel', 93 'v8_mac64_asan_rel',
94 'v8_swarming_staging',
95 ], 95 ],
96 'hostname': name, 96 'hostname': name,
97 'os': 'mac', 97 'os': 'mac',
98 'version': '10.9', 98 'version': '10.9',
99 'bits': '64', 99 'bits': '64',
100 } for name in ['vm660-m4', 'vm820-m4', 'vm880-m4'] 100 } for name in ['vm660-m4', 'vm820-m4', 'vm880-m4']
101 ]) 101 ])
102 102
103 slaves.extend([ 103 slaves.extend([
104 { 104 {
(...skipping 14 matching lines...) Expand all
119 slaves.append({ 119 slaves.append({
120 'master': 'V8TryServer', 120 'master': 'V8TryServer',
121 'builder': ['v8_win_rel_ng_triggered', 121 'builder': ['v8_win_rel_ng_triggered',
122 'v8_win64_rel_ng_triggered'], 122 'v8_win64_rel_ng_triggered'],
123 'hostname': 'slave400-c4', 123 'hostname': 'slave400-c4',
124 'os': 'linux', 124 'os': 'linux',
125 'version': 'trusty', 125 'version': 'trusty',
126 'bits': '64', 126 'bits': '64',
127 'subdir': str(j), 127 'subdir': str(j),
128 }) 128 })
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/v8/builders.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698