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

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

Issue 565213003: Add *_ng bots to tryserver.chromium.linux (synchronized with main waterfall) (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 6 years, 3 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
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 # Copyright (c) 2012 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 9
10 def expand_extra_builders(extras, total): 10 def expand_extra_builders(extras, total):
(...skipping 27 matching lines...) Expand all
38 linux_arm_testers = [9] 38 linux_arm_testers = [9]
39 39
40 # Have a dedicated pool for presubmit jobs - all CQ jobs 40 # Have a dedicated pool for presubmit jobs - all CQ jobs
41 # need a presubmit first and so must be responsive. 41 # need a presubmit first and so must be responsive.
42 presubmit_builders = ['chromium_presubmit', 'blink_presubmit'] 42 presubmit_builders = ['chromium_presubmit', 'blink_presubmit']
43 43
44 # Configurations on every VM. 44 # Configurations on every VM.
45 base = presubmit_builders + [ 45 base = presubmit_builders + [
46 # One line per shared directory. In decreasing usage: 46 # One line per shared directory. In decreasing usage:
47 'linux_chromium_dbg', 'linux_chromium_rel', 'linux_chromium_rel_swarming', 47 'linux_chromium_dbg', 'linux_chromium_rel', 'linux_chromium_rel_swarming',
48 'linux_chromium_dbg_ng', 'linux_chromium_rel_ng',
48 'linux_chromium_compile_dbg', 'linux_chromium_compile_rel', 49 'linux_chromium_compile_dbg', 'linux_chromium_compile_rel',
49 'linux_rel_naclmore', 50 'linux_rel_naclmore',
50 'linux_chromium_gn_dbg', 'linux_chromium_gn_rel', 51 'linux_chromium_gn_dbg', 'linux_chromium_gn_rel',
51 'android_chromium_gn_compile_dbg', 52 'android_chromium_gn_compile_dbg',
52 'android_chromium_gn_compile_dbg_recipe', 53 'android_chromium_gn_compile_dbg_recipe',
53 'android_chromium_gn_compile_rel', 54 'android_chromium_gn_compile_rel',
54 'android_chromium_gn_compile_rel_recipe', 55 'android_chromium_gn_compile_rel_recipe',
55 56
56 'linux_chromium_clang_dbg', 'linux_chromium_clang_rel', 57 'linux_chromium_clang_dbg', 'linux_chromium_clang_rel',
57 58
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 'os': 'linux', 275 'os': 'linux',
275 'version': 'precise', 276 'version': 'precise',
276 'bits': '64', 277 'bits': '64',
277 } for i in range(520, 550) 278 } for i in range(520, 550)
278 ] 279 ]
279 280
280 return compile_slaves + test_slaves + aosp_slaves 281 return compile_slaves + test_slaves + aosp_slaves
281 282
282 283
283 slaves = linux() + android() 284 slaves = linux() + android()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698