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

Side by Side Diff: masters/master.client.v8.ports/slaves.cfg

Issue 1858233002: V8: Move x87 builders to new master. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Files Created 4 years, 8 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
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright 2016 The Chromium Authors. All rights reserved. 4 # Copyright 2016 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 # This is an list of dictionaries to describe slaves. 8 # This is an list of dictionaries to describe slaves.
9 # This list is intentionally flat to be easy to filter arbitrarily. 9 # This list is intentionally flat to be easy to filter arbitrarily.
10 10
11 slaves = [] 11 slaves = [
12 {
13 'master': 'V8Ports',
14 'builder': ['V8 Linux - x87 - nosnap - debug builder'],
15 'hostname': 'slave5-c3',
16 'os': 'linux',
17 'version': 'trusty',
18 'bits': '64',
19 },
20 {
21 'master': 'V8Ports',
22 'builder': ['V8 Linux - x87 - nosnap - debug'],
23 'hostname': 'vm349-m3',
24 'os': 'linux',
25 'version': 'precise',
26 'bits': '32',
27 },
28 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698