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

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

Issue 872263002: WebRTC: Move SyzyASan to FYI due to bug. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Removed trybot in waterfall config Created 5 years, 10 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 | « masters/master.client.webrtc/slaves.cfg ('k') | masters/master.tryserver.webrtc/slaves.cfg » ('j') | 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 ####### BUILDERS 43 ####### BUILDERS
44 44
45 # Recipe based builders. 45 # Recipe based builders.
46 specs = [ 46 specs = [
47 {'name': 'win', 'slavebuilddir': 'win'}, 47 {'name': 'win', 'slavebuilddir': 'win'},
48 {'name': 'win_rel', 'slavebuilddir': 'win'}, 48 {'name': 'win_rel', 'slavebuilddir': 'win'},
49 {'name': 'win_x64_rel', 'slavebuilddir': 'win'}, 49 {'name': 'win_x64_rel', 'slavebuilddir': 'win'},
50 {'name': 'win_x64_gn', 'slavebuilddir': 'win_gn'}, 50 {'name': 'win_x64_gn', 'slavebuilddir': 'win_gn'},
51 {'name': 'win_x64_gn_rel', 'slavebuilddir': 'win_gn'}, 51 {'name': 'win_x64_gn_rel', 'slavebuilddir': 'win_gn'},
52 {'name': 'win_baremetal', 'slavebuilddir': 'win'}, 52 {'name': 'win_baremetal', 'slavebuilddir': 'win'},
53 {'name': 'win_asan', 'slavebuilddir': 'win_asan'},
54 {'name': 'win_drmemory_light', 'slavebuilddir': 'win-drmemory'}, 53 {'name': 'win_drmemory_light', 'slavebuilddir': 'win-drmemory'},
55 {'name': 'win_drmemory_full', 'slavebuilddir': 'win-drmemory'}, 54 {'name': 'win_drmemory_full', 'slavebuilddir': 'win-drmemory'},
56 {'name': 'mac', 'slavebuilddir': 'mac32'}, 55 {'name': 'mac', 'slavebuilddir': 'mac32'},
57 {'name': 'mac_rel', 'slavebuilddir': 'mac32'}, 56 {'name': 'mac_rel', 'slavebuilddir': 'mac32'},
58 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'}, 57 {'name': 'mac_x64_rel', 'slavebuilddir': 'mac64'},
59 {'name': 'mac_x64_gn', 'slavebuilddir': 'mac_gn'}, 58 {'name': 'mac_x64_gn', 'slavebuilddir': 'mac_gn'},
60 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'}, 59 {'name': 'mac_x64_gn_rel', 'slavebuilddir': 'mac_gn'},
61 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'}, 60 {'name': 'mac_baremetal', 'slavebuilddir': 'mac32'},
62 {'name': 'ios', 'slavebuilddir': 'mac32'}, 61 {'name': 'ios', 'slavebuilddir': 'mac32'},
63 {'name': 'ios_rel', 'slavebuilddir': 'mac32'}, 62 {'name': 'ios_rel', 'slavebuilddir': 'mac32'},
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 # Must be at least 2x the number of slaves. 191 # Must be at least 2x the number of slaves.
193 c['eventHorizon'] = 100 192 c['eventHorizon'] = 100
194 # Must be at least 2x the number of on-going builds. 193 # Must be at least 2x the number of on-going builds.
195 c['buildCacheSize'] = 100 194 c['buildCacheSize'] = 100
196 195
197 ####### PROJECT IDENTITY 196 ####### PROJECT IDENTITY
198 197
199 # The 'projectURL' string will be used to provide a link 198 # The 'projectURL' string will be used to provide a link
200 # from buildbot HTML pages to your project's home page. 199 # from buildbot HTML pages to your project's home page.
201 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 200 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
OLDNEW
« no previous file with comments | « masters/master.client.webrtc/slaves.cfg ('k') | masters/master.tryserver.webrtc/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698