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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 ]) | 230 ]) |
231 | 231 |
232 chromium_builders.extend([{ | 232 chromium_builders.extend([{ |
233 'name': 'linux_chromium_headless_rel', | 233 'name': 'linux_chromium_headless_rel', |
234 'factory': m_remote_run_chromium_src( | 234 'factory': m_remote_run_chromium_src( |
235 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 235 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
236 'slavebuilddir': 'remote_run', | 236 'slavebuilddir': 'remote_run', |
237 }, | 237 }, |
238 ]) | 238 ]) |
239 | 239 |
| 240 b_linux_ozone = { |
| 241 'name': 'linux_chromium_ozone_compile_only_ng', |
| 242 'factory': m_remote_run('chromium_trybot'), |
| 243 'slavebuilddir': 'remote_run', |
| 244 } |
| 245 |
240 b_linux_site_isolation = { | 246 b_linux_site_isolation = { |
241 'name': 'linux_site_isolation', | 247 'name': 'linux_site_isolation', |
242 'factory': m_remote_run_chromium_src('chromium_trybot'), | 248 'factory': m_remote_run_chromium_src('chromium_trybot'), |
243 'slavebuilddir': 'remote_run', | 249 'slavebuilddir': 'remote_run', |
244 } | 250 } |
245 | 251 |
246 b_linux_chromium_asan_rel_ng = { | 252 b_linux_chromium_asan_rel_ng = { |
247 'name': 'linux_chromium_asan_rel_ng', | 253 'name': 'linux_chromium_asan_rel_ng', |
248 'factory': m_remote_run_chromium_src( | 254 'factory': m_remote_run_chromium_src( |
249 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 255 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 }) | 433 }) |
428 | 434 |
429 c['builders'] = [ | 435 c['builders'] = [ |
430 b_chromium_presubmit, | 436 b_chromium_presubmit, |
431 b_codesearch_chromeos_builder, | 437 b_codesearch_chromeos_builder, |
432 b_codesearch_linux_builder, | 438 b_codesearch_linux_builder, |
433 b_linux_chromium_asan_rel_ng, | 439 b_linux_chromium_asan_rel_ng, |
434 b_linux_chromium_browser_side_navigation_rel, | 440 b_linux_chromium_browser_side_navigation_rel, |
435 b_linux_nacl_sdk, | 441 b_linux_nacl_sdk, |
436 b_linux_nacl_sdk_build, | 442 b_linux_nacl_sdk_build, |
| 443 b_linux_ozone, |
437 b_linux_site_isolation, | 444 b_linux_site_isolation, |
438 ] + chromium_builders + variable_builders | 445 ] + chromium_builders + variable_builders |
439 | 446 |
440 | 447 |
441 # Slaves are loaded from slaves.cfg. | 448 # Slaves are loaded from slaves.cfg. |
442 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumLinux') | 449 slaves = slaves_list.SlavesList('slaves.cfg', 'TryServerChromiumLinux') |
443 | 450 |
444 for builder in c['builders']: | 451 for builder in c['builders']: |
445 # Associate the slaves to the builders. The configuration is in slaves.cfg. | 452 # Associate the slaves to the builders. The configuration is in slaves.cfg. |
446 builder['slavenames'] = slaves.GetSlavesName(builder=builder['name']) | 453 builder['slavenames'] = slaves.GetSlavesName(builder=builder['name']) |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 # base.make_stop_form = hack_stop(base.make_stop_form) | 558 # base.make_stop_form = hack_stop(base.make_stop_form) |
552 | 559 |
553 | 560 |
554 ####### PROJECT IDENTITY | 561 ####### PROJECT IDENTITY |
555 | 562 |
556 # The 'projectURL' string will be used to provide a link | 563 # The 'projectURL' string will be used to provide a link |
557 # from buildbot HTML pages to your project's home page. | 564 # from buildbot HTML pages to your project's home page. |
558 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 565 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
559 | 566 |
560 # vi: set ts=4 sts=2 sw=2 et: | 567 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |