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

Side by Side Diff: masters/master.tryserver.chromium.linux/slaves.cfg

Issue 953303004: Add linux_arm_compile builder to list of CQ bots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 9 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 | « 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 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 # Copyright 2014 The Chromium Authors. All rights reserved. 3 # Copyright 2014 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # See master.experimental/slaves.cfg for documentation. 7 # See master.experimental/slaves.cfg for documentation.
8 8
9 def linux(): 9 def linux():
10 linux_arm_testers = [9] 10 linux_arm_testers = [9]
11 11
12 cq_slaves = range(125, 131) + range(250, 399) 12 cq_slaves = range(125, 131) + range(250, 399)
13 cq_builders = [ 13 cq_builders = [
14 'android_chromium_gn_compile_dbg', 14 'android_chromium_gn_compile_dbg',
15 'android_chromium_gn_compile_rel', 15 'android_chromium_gn_compile_rel',
16 'cast_shell', 16 'cast_shell',
17 'cast_shell_apk', 17 'cast_shell_apk',
18 'chromium_presubmit', 18 'chromium_presubmit',
19 'infra_tester', 19 'infra_tester',
20 'linux_arm_compile',
20 'linux_chromium_asan_rel', 21 'linux_chromium_asan_rel',
21 'linux_chromium_asan_rel_ng', 22 'linux_chromium_asan_rel_ng',
22 'linux_chromium_chromeos_compile_dbg_ng', 23 'linux_chromium_chromeos_compile_dbg_ng',
23 'linux_chromium_chromeos_rel_ng', 24 'linux_chromium_chromeos_rel_ng',
24 'linux_chromium_clobber_rel_ng', 25 'linux_chromium_clobber_rel_ng',
25 'linux_chromium_compile_dbg_ng', 26 'linux_chromium_compile_dbg_ng',
26 'linux_chromium_gn_chromeos_dbg', 27 'linux_chromium_gn_chromeos_dbg',
27 'linux_chromium_gn_chromeos_rel', 28 'linux_chromium_gn_chromeos_rel',
28 'linux_chromium_gn_dbg', 29 'linux_chromium_gn_dbg',
29 'linux_chromium_gn_rel', 30 'linux_chromium_gn_rel',
30 'linux_chromium_rel_ng', 31 'linux_chromium_rel_ng',
31 ] 32 ]
32 33
33 optional_slaves = range(121, 125) + range(493, 496) + range(714, 719) 34 optional_slaves = range(121, 125) + range(493, 496) + range(714, 719)
34 optional_builders = [ 35 optional_builders = [
35 'linux_arm', 36 'linux_arm',
36 'linux_arm_compile',
37 'linux_chromium_chromeos_asan_rel_ng', 37 'linux_chromium_chromeos_asan_rel_ng',
38 'linux_chromium_chromeos_compile_rel_ng', 38 'linux_chromium_chromeos_compile_rel_ng',
39 'linux_chromium_chromeos_dbg_ng', 39 'linux_chromium_chromeos_dbg_ng',
40 'linux_chromium_chromeos_ozone_dbg_ng', 40 'linux_chromium_chromeos_ozone_dbg_ng',
41 'linux_chromium_chromeos_ozone_rel_ng', 41 'linux_chromium_chromeos_ozone_rel_ng',
42 'linux_chromium_compile_rel', 42 'linux_chromium_compile_rel',
43 'linux_chromium_compile_rel_ng', 43 'linux_chromium_compile_rel_ng',
44 'linux_chromium_dbg_ng', 44 'linux_chromium_dbg_ng',
45 'linux_chromium_gn_upload_x64', 45 'linux_chromium_gn_upload_x64',
46 'linux_chromium_gn_upload_x86', 46 'linux_chromium_gn_upload_x86',
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 'os': 'linux', 198 'os': 'linux',
199 'version': 'precise', 199 'version': 'precise',
200 'bits': '64', 200 'bits': '64',
201 } for i in range(520, 540) 201 } for i in range(520, 540)
202 ] 202 ]
203 203
204 return compile_slaves + test_slaves + amp_slaves + aosp_slaves 204 return compile_slaves + test_slaves + amp_slaves + aosp_slaves
205 205
206 206
207 slaves = linux() + android() 207 slaves = linux() + android()
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