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

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

Issue 2196953003: Remove GYP builders from chromium mac, win waterfalls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: remove unused suppressions 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
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 # 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 os 10 import os
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 recipe=recipe, 65 recipe=recipe,
66 factory_properties={'path_config': 'kitchen'}, 66 factory_properties={'path_config': 'kitchen'},
67 **kwargs) 67 **kwargs)
68 68
69 69
70 b_ios_simulator = { 70 b_ios_simulator = {
71 'name': 'ios-simulator', 71 'name': 'ios-simulator',
72 'factory': baseFactory('ios/try'), 72 'factory': baseFactory('ios/try'),
73 } 73 }
74 74
75 b_ios_simulator_gn = {
76 'name': 'ios-simulator-gn',
77 'factory': baseFactory('ios/try'),
78 }
79
80 b_ios_simulator_cronet = { 75 b_ios_simulator_cronet = {
81 'name': 'ios-simulator-cronet', 76 'name': 'ios-simulator-cronet',
82 'factory': baseFactory('ios/try'), 77 'factory': baseFactory('ios/try'),
83 } 78 }
84 79
85 b_ios_simulator_swarming = { 80 b_ios_simulator_swarming = {
86 'name': 'ios-simulator-swarming', 81 'name': 'ios-simulator-swarming',
87 'factory': baseFactory('ios/try'), 82 'factory': baseFactory('ios/try'),
88 } 83 }
89 84
90 b_ios_device = { 85 b_ios_device = {
91 'name': 'ios-device', 86 'name': 'ios-device',
92 'factory': baseFactory('ios/try'), 87 'factory': baseFactory('ios/try'),
93 } 88 }
94 89
95 b_ios_device_gn = {
96 'name': 'ios-device-gn',
97 'factory': baseFactory('ios/try'),
98 }
99
100 chromium_builders = [] 90 chromium_builders = []
101 91
102 for targ in ('_rel', '_dbg'): 92 for targ in ('_rel', '_dbg'):
103 chromium_builders.extend([{ 93 chromium_builders.extend([{
104 'name': 'mac_chromium_compile%s_ng' % targ, 94 'name': 'mac_chromium_compile%s_ng' % targ,
105 'factory': m_remote_run( 95 'factory': m_remote_run(
106 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME), 96 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME),
107 'slavebuilddir': 'remote_run' 97 'slavebuilddir': 'remote_run'
108 }]) 98 }])
109 99
(...skipping 22 matching lines...) Expand all
132 'slavebuilddir': 'remote_run' 122 'slavebuilddir': 'remote_run'
133 }) 123 })
134 124
135 chromium_builders.append({ 125 chromium_builders.append({
136 'name': 'mac_chromium_archive_rel_ng', 126 'name': 'mac_chromium_archive_rel_ng',
137 'factory': m_remote_run('chromium_trybot', timeout=3600), 127 'factory': m_remote_run('chromium_trybot', timeout=3600),
138 'slavebuilddir': 'remote_run' 128 'slavebuilddir': 'remote_run'
139 }) 129 })
140 130
141 chromium_builders.extend([{ 131 chromium_builders.extend([{
142 'name': 'mac_chromium_gyp_dbg',
143 'factory': m_remote_run('chromium_trybot'),
144 'slavebuilddir': 'remote_run',
145 }, {
146 'name': 'mac_chromium_gyp_rel',
147 'factory': m_remote_run(
148 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME),
149 'slavebuilddir': 'remote_run',
150 }, {
151 'name': 'mac_chromium_gn_upload', 132 'name': 'mac_chromium_gn_upload',
152 'factory': baseFactory('chromium_gn_upload'), 133 'factory': baseFactory('chromium_gn_upload'),
153 'slavebuilddir': 'mac_gn', 134 'slavebuilddir': 'mac_gn',
154 }]) 135 }])
155 136
156 chromium_builders.append({ 137 chromium_builders.append({
157 'name': 'mac_upload_clang', 138 'name': 'mac_upload_clang',
158 'factory': baseFactory('chromium_upload_clang'), 139 'factory': baseFactory('chromium_upload_clang'),
159 'slavebuilddir': 'mac_upload_clang', 140 'slavebuilddir': 'mac_upload_clang',
160 }) 141 })
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 }, 217 },
237 { 218 {
238 'name': 'mac_chromium_variable_10.11_layout', 219 'name': 'mac_chromium_variable_10.11_layout',
239 'factory': baseFactory('findit/chromium/compile'), 220 'factory': baseFactory('findit/chromium/compile'),
240 'slavebuilddir': 'mac_variable' 221 'slavebuilddir': 'mac_variable'
241 }, 222 },
242 ] 223 ]
243 224
244 c['builders'] = [ 225 c['builders'] = [
245 b_ios_simulator, 226 b_ios_simulator,
246 b_ios_simulator_gn,
247 b_ios_simulator_cronet, 227 b_ios_simulator_cronet,
248 b_ios_simulator_swarming, 228 b_ios_simulator_swarming,
249 b_ios_device, 229 b_ios_device,
250 b_ios_device_gn,
251 b_mac_nacl_sdk, 230 b_mac_nacl_sdk,
252 b_mac_nacl_sdk_build, 231 b_mac_nacl_sdk_build,
253 ] + chromium_builders + variable_builders 232 ] + chromium_builders + variable_builders
254 233
255 234
256 # Slaves are loaded from slaves.cfg. 235 # Slaves are loaded from slaves.cfg.
257 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumMac') 236 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumMac')
258 237
259 for builder in c['builders']: 238 for builder in c['builders']:
260 # Associate the slaves to the builders. The configuration is in slaves.cfg. 239 # Associate the slaves to the builders. The configuration is in slaves.cfg.
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 # base.make_stop_form = hack_stop(base.make_stop_form) 356 # base.make_stop_form = hack_stop(base.make_stop_form)
378 357
379 358
380 ####### PROJECT IDENTITY 359 ####### PROJECT IDENTITY
381 360
382 # The 'projectURL' string will be used to provide a link 361 # The 'projectURL' string will be used to provide a link
383 # from buildbot HTML pages to your project's home page. 362 # from buildbot HTML pages to your project's home page.
384 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' 363 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage'
385 364
386 # vi: set ts=4 sts=2 sw=2 et: 365 # vi: set ts=4 sts=2 sw=2 et:
OLDNEW
« no previous file with comments | « masters/master.chromium.win/slaves.cfg ('k') | masters/master.tryserver.chromium.mac/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698