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

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

Issue 2438793002: libyuv: Replace Golo VMs with GCE (Closed)
Patch Set: Created 4 years, 2 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 slaves = [ 5 slaves = [
6 # Linux 32-bit.
7 {
8 'master': 'Libyuv',
9 'os': 'linux',
10 'version': 'precise',
11 'bits': '32',
12 'builder': [
13 'Linux32 Debug',
14 'Linux32 Release',
15 ],
16 'hostname': 'vm321-m3',
17 }
18 ] + [
19 # Linux 64-bit. 6 # Linux 64-bit.
20 { 7 {
21 'master': 'Libyuv', 8 'master': 'Libyuv',
22 'os': 'linux', 9 'os': 'linux',
23 'version': 'precise', 10 'version': 'precise',
24 'bits': '64', 11 'bits': '64',
25 'builder': [ 12 'builder': [
13 'Linux32 Debug',
14 'Linux32 Release',
26 'Linux64 Debug', 15 'Linux64 Debug',
27 'Linux64 Release', 16 'Linux64 Release',
28 # TODO(kjellander): Add when trybot is green (crbug.com/625889). 17 # TODO(kjellander): Add when trybot is green (crbug.com/625889).
29 #'Linux GCC', 18 #'Linux GCC',
30 'Linux Asan', 19 'Linux Asan',
31 'Linux Memcheck', 20 'Linux Memcheck',
32 'Linux MSan', 21 'Linux MSan',
33 'Linux Tsan v2', 22 'Linux Tsan v2',
34 'Linux UBSan', 23 'Linux UBSan',
35 'Linux UBSan vptr', 24 'Linux UBSan vptr',
36 'Android Debug', 25 'Android Debug',
37 'Android Release', 26 'Android Release',
38 'Android Clang Debug', 27 'Android Clang Debug',
39 'Android ARM64 Debug', 28 'Android ARM64 Debug',
40 'Android32 x86 Debug', 29 'Android32 x86 Debug',
41 'Android64 x64 Debug', 30 'Android64 x64 Debug',
42 'Android32 MIPS Debug', 31 'Android32 MIPS Debug',
43 ], 32 ],
44 'hostname': host, 33 'hostname': 'slave%d-c3' % i,
45 } for host in list('vm%d-m3' % i for i in range(322, 324)) + ['slave90-c3'] 34 } for i in range(174,177) + [90]
46 ] + [ 35 ] + [
47 # Linux 64-bit machine with Android device connected. 36 # Linux 64-bit machine with Android device connected.
48 { 37 {
49 'master': 'Libyuv', 38 'master': 'Libyuv',
50 'os': 'linux', 39 'os': 'linux',
51 'version': 'trusty', 40 'version': 'trusty',
52 'bits': '64', 41 'bits': '64',
53 'builder': [ 42 'builder': [
54 'Android Tester ARM32 Debug (Nexus 5X)', 43 'Android Tester ARM32 Debug (Nexus 5X)',
55 'Android Tester ARM32 Release (Nexus 5X)', 44 'Android Tester ARM32 Release (Nexus 5X)',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'Win64 Debug (VS2013)', 77 'Win64 Debug (VS2013)',
89 'Win64 Release (VS2013)', 78 'Win64 Release (VS2013)',
90 'Win32 Debug (Clang)', 79 'Win32 Debug (Clang)',
91 'Win32 Release (Clang)', 80 'Win32 Release (Clang)',
92 'Win64 Debug (Clang)', 81 'Win64 Debug (Clang)',
93 'Win64 Release (Clang)', 82 'Win64 Release (Clang)',
94 ], 83 ],
95 'hostname': 'vm%d-m3' % i, 84 'hostname': 'vm%d-m3' % i,
96 } for i in [32, 324] 85 } for i in [32, 324]
97 ] 86 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698