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

Side by Side Diff: masters/master.client.dart/slaves.cfg

Issue 2247673003: Rename Dart's hot-reload builders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « masters/master.client.dart/master.cfg ('k') | scripts/slave/recipes/dart/dart_vm.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 slaves = [ 10 slaves = [
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 { 262 {
263 'master': 'Dart', 263 'master': 'Dart',
264 'builder': ['precomp-linux-product-x64'], 264 'builder': ['precomp-linux-product-x64'],
265 'hostname': 'slave139-c3', 265 'hostname': 'slave139-c3',
266 'os': 'linux', 266 'os': 'linux',
267 'version': 'trusty', 267 'version': 'trusty',
268 'bits': '64', 268 'bits': '64',
269 }, 269 },
270 { 270 {
271 'master': 'Dart', 271 'master': 'Dart',
272 'builder': ['vm-linux-debug-x64-live-reload'], 272 'builder': ['vm-linux-debug-x64-reload'],
273 'hostname': 'slave140-c3', 273 'hostname': 'slave140-c3',
274 'os': 'linux', 274 'os': 'linux',
275 'version': 'trusty', 275 'version': 'trusty',
276 'bits': '64', 276 'bits': '64',
277 }, 277 },
278 { 278 {
279 'master': 'Dart', 279 'master': 'Dart',
280 'builder': ['vm-linux-release-x64-stress-reload'], 280 'builder': ['vm-linux-release-x64-reload-rollback'],
281 'hostname': 'slave144-c3', 281 'hostname': 'slave144-c3',
282 'os': 'linux', 282 'os': 'linux',
283 'version': 'trusty', 283 'version': 'trusty',
284 'bits': '64', 284 'bits': '64',
285 }, 285 },
286 { 286 {
287 'master': 'Dart', 287 'master': 'Dart',
288 'builder': ['vm-linux-debug-x64-stress-reload'], 288 'builder': ['vm-linux-debug-x64-reload-rollback'],
289 'hostname': 'slave145-c3', 289 'hostname': 'slave145-c3',
290 'os': 'linux', 290 'os': 'linux',
291 'version': 'trusty', 291 'version': 'trusty',
292 'bits': '64', 292 'bits': '64',
293 }, 293 },
294 { 294 {
295 'master': 'Dart', 295 'master': 'Dart',
296 'builder': ['vm-linux-release-x64-live-reload'], 296 'builder': ['vm-linux-release-x64-reload'],
297 'hostname': 'slave141-c3', 297 'hostname': 'slave141-c3',
298 'os': 'linux', 298 'os': 'linux',
299 'version': 'trusty', 299 'version': 'trusty',
300 'bits': '64', 300 'bits': '64',
301 }, 301 },
302 { 302 {
303 'master': 'Dart', 303 'master': 'Dart',
304 'builder': ['target-arm-vm-linux-release'], 304 'builder': ['target-arm-vm-linux-release'],
305 'hostname': 'build31-b3', 305 'hostname': 'build31-b3',
306 'os': 'linux', 306 'os': 'linux',
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 for builder in slave['builder']: 916 for builder in slave['builder']:
917 if (builder.startswith('vm-') and 917 if (builder.startswith('vm-') and
918 'product' not in builder and 918 'product' not in builder and
919 'reload' not in builder and 919 'reload' not in builder and
920 'slave' in slave['hostname'] and 920 'slave' in slave['hostname'] and
921 slave['os'] == 'linux'): 921 slave['os'] == 'linux'):
922 raise InvalidDartBuilder() 922 raise InvalidDartBuilder()
923 923
924 check_for_ccompute(slaves) 924 check_for_ccompute(slaves)
925 slaves = duplicate_builders_in_slaves(slaves) 925 slaves = duplicate_builders_in_slaves(slaves)
OLDNEW
« no previous file with comments | « masters/master.client.dart/master.cfg ('k') | scripts/slave/recipes/dart/dart_vm.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698