OLD | NEW |
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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 }) | 229 }) |
230 | 230 |
231 # Chromecast builders using chromium_trybot | 231 # Chromecast builders using chromium_trybot |
232 chromium_builders.extend([{ | 232 chromium_builders.extend([{ |
233 'name': 'cast_shell_linux', | 233 'name': 'cast_shell_linux', |
234 'factory': m_annotator.BaseFactory( | 234 'factory': m_annotator.BaseFactory( |
235 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 235 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
236 }, | 236 }, |
237 ]) | 237 ]) |
238 | 238 |
239 chromium_builders.append({ | |
240 'name': 'linux_deterministic', | |
241 'factory': m_annotator.BaseFactory('deterministic_build') | |
242 }) | |
243 | |
244 # Ozone builder | 239 # Ozone builder |
245 ozone_builders = [{ | 240 ozone_builders = [{ |
246 'name': 'linux_ecs_ozone', | 241 'name': 'linux_ecs_ozone', |
247 'builddir': 'ozone-linux', | 242 'builddir': 'ozone-linux', |
248 'factory': m_annotator.BaseFactory('ozone_ecs', | 243 'factory': m_annotator.BaseFactory('ozone_ecs', |
249 {'use_mirror': ActiveMaster.is_production_host or None}), | 244 {'use_mirror': ActiveMaster.is_production_host or None}), |
250 }] | 245 }] |
251 | 246 |
252 b_linux_site_isolation = { | 247 b_linux_site_isolation = { |
253 'name': 'linux_site_isolation', | 248 'name': 'linux_site_isolation', |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
553 # base.make_stop_form = hack_stop(base.make_stop_form) | 548 # base.make_stop_form = hack_stop(base.make_stop_form) |
554 | 549 |
555 | 550 |
556 ####### PROJECT IDENTITY | 551 ####### PROJECT IDENTITY |
557 | 552 |
558 # The 'projectURL' string will be used to provide a link | 553 # The 'projectURL' string will be used to provide a link |
559 # from buildbot HTML pages to your project's home page. | 554 # from buildbot HTML pages to your project's home page. |
560 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 555 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
561 | 556 |
562 # vi: set ts=4 sts=2 sw=2 et: | 557 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |