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

Side by Side Diff: masters/master.tryserver.webrtc/master.cfg

Issue 2236263002: tryserver.chromium.webrtc: re-enable 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 # 3 #
4 # Use of this source code is governed by a BSD-style license 4 # Use of this source code is governed by a BSD-style license
5 # that can be found in the LICENSE file in the root of the source 5 # that can be found in the LICENSE file in the root of the source
6 # tree. An additional intellectual property rights grant can be found 6 # tree. An additional intellectual property rights grant can be found
7 # in the file PATENTS. All contributing project authors may 7 # in the file PATENTS. All contributing project authors may
8 # be found in the AUTHORS file in the root of the source tree. 8 # be found in the AUTHORS file in the root of the source tree.
9 9
10 import os 10 import os
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 factory_properties={'path_config': 'kitchen'}, 132 factory_properties={'path_config': 'kitchen'},
133 **kwargs) 133 **kwargs)
134 134
135 135
136 c['builders'] = [ 136 c['builders'] = [
137 { 137 {
138 'name': spec['name'], 138 'name': spec['name'],
139 # TODO(sergiyb): Remove the timeout below after all bots have synched past 139 # TODO(sergiyb): Remove the timeout below after all bots have synched past
140 # Blink merge commit. 140 # Blink merge commit.
141 'factory': m_annotator.BaseFactory(spec['recipe'], timeout=3600) 141 'factory': m_annotator.BaseFactory(spec['recipe'], timeout=3600)
142 if spec.get('recipe', 'webrtc/standalone') != 'webrtc/standalone' 142 if spec.get('recipe') == 'webrtc/libfuzzer'
143 else m_remote_run('webrtc/standalone', timeout=3600), 143 else m_remote_run(spec.get('recipe', 'webrtc/standalone'),
144 timeout=3600),
144 'slavebuilddir': spec['slavebuilddir'], 145 'slavebuilddir': spec['slavebuilddir'],
145 } for spec in specs 146 } for spec in specs
146 ] 147 ]
147 148
148 149
149 # Presubmit builder. 150 # Presubmit builder.
150 c['builders'].append( 151 c['builders'].append(
151 { 152 {
152 'name': 'presubmit', 153 'name': 'presubmit',
153 'factory': m_annotator.BaseFactory('run_presubmit', 154 'factory': m_annotator.BaseFactory('run_presubmit',
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 # Must be at least 2x the number of slaves. 247 # Must be at least 2x the number of slaves.
247 c['eventHorizon'] = 100 248 c['eventHorizon'] = 100
248 # Must be at least 2x the number of on-going builds. 249 # Must be at least 2x the number of on-going builds.
249 c['buildCacheSize'] = 100 250 c['buildCacheSize'] = 100
250 251
251 ####### PROJECT IDENTITY 252 ####### PROJECT IDENTITY
252 253
253 # The 'projectURL' string will be used to provide a link 254 # The 'projectURL' string will be used to provide a link
254 # from buildbot HTML pages to your project's home page. 255 # from buildbot HTML pages to your project's home page.
255 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 256 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
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