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

Side by Side Diff: masters/master.tryserver.chromium.perf/master.cfg

Issue 2225723004: tryserver.chromium.perf: convert bisection/* builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
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
« 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 # READ THIS: 7 # READ THIS:
8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure
9 9
10 import socket 10 import socket
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 if platform == 'android': 84 if platform == 'android':
85 recipe = 'bisection/android_bisect' 85 recipe = 'bisection/android_bisect'
86 else: 86 else:
87 recipe = 'bisection/desktop_bisect' 87 recipe = 'bisection/desktop_bisect'
88 88
89 if not skip_suffix: 89 if not skip_suffix:
90 name = '%s_perf_bisect' % name 90 name = '%s_perf_bisect' % name
91 91
92 c['builders'].append({ 92 c['builders'].append({
93 'name': name, 93 'name': name,
94 'factory': annotator_factory.AnnotatorFactory(ActiveMaster).BaseFactory( 94 'factory': m_remote_run(
95 recipe=recipe, 95 recipe=recipe,
96 timeout=timeout, 96 timeout=timeout,
97 max_time=24 * 60 * 60), 97 max_time=24 * 60 * 60),
98 'category': '%d%s' % (_CategoryIndex(category), category) 98 'category': '%d%s' % (_CategoryIndex(category), category)
99 }) 99 })
100 100
101 # All builder bot names here are suffixed with '_bisect_builder' 101 # All builder bot names here are suffixed with '_bisect_builder'
102 _AddBisectBuilder( 102 _AddBisectBuilder(
103 'android_arm64_perf', 'android', 'builders', 'android_perf_rel_arm64') 103 'android_arm64_perf', 'android', 'builders', 'android_perf_rel_arm64')
104 _AddBisectBuilder('android_perf', 'android', 'builders','android_perf_rel') 104 _AddBisectBuilder('android_perf', 'android', 'builders','android_perf_rel')
105 _AddBisectBuilder('linux_perf', 'linux', 'builders','Linux Builder') 105 _AddBisectBuilder('linux_perf', 'linux', 'builders','Linux Builder')
106 _AddBisectBuilder('mac_perf', 'mac', 'builders','Mac Builder') 106 _AddBisectBuilder('mac_perf', 'mac', 'builders','Mac Builder')
107 _AddBisectBuilder('win_perf', 'win', 'builders','Win Builder', timeout=4800) 107 _AddBisectBuilder('win_perf', 'win', 'builders','Win Builder', timeout=4800)
108 _AddBisectBuilder('winx64', 'win', 'builders','Win x64 Builder', timeout=4800) 108 _AddBisectBuilder('winx64', 'win', 'builders','Win x64 Builder', timeout=4800)
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 # Must be at least 2x the number of slaves. 228 # Must be at least 2x the number of slaves.
229 c['eventHorizon'] = 200 229 c['eventHorizon'] = 200
230 c['logCompressionLimit'] = False 230 c['logCompressionLimit'] = False
231 231
232 # Adjust the buildCaches to be 3x the number of slaves per builder. 232 # Adjust the buildCaches to be 3x the number of slaves per builder.
233 c['autoBuildCacheRatio'] = 3 233 c['autoBuildCacheRatio'] = 3
234 234
235 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 235 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
236 236
237 # vi: set ts=4 sts=2 sw=2 et: 237 # vi: set ts=4 sts=2 sw=2 et:
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