| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 'factory': m_remote_run_chromium_src('chromium_trybot'), | 157 'factory': m_remote_run_chromium_src('chromium_trybot'), |
| 158 'slavebuilddir': 'remote_run', | 158 'slavebuilddir': 'remote_run', |
| 159 }) | 159 }) |
| 160 | 160 |
| 161 chromium_builders.append({ | 161 chromium_builders.append({ |
| 162 'name': 'linux_chromium_cfi_rel_ng', | 162 'name': 'linux_chromium_cfi_rel_ng', |
| 163 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=12000), | 163 'factory': m_remote_run_chromium_src('chromium_trybot', timeout=12000), |
| 164 'slavebuilddir': 'remote_run', | 164 'slavebuilddir': 'remote_run', |
| 165 }) | 165 }) |
| 166 | 166 |
| 167 chromium_builders.append({ |
| 168 'name': 'linux_chromium_ubsan_rel_ng', |
| 169 'factory': m_remote_run_chromium_src( |
| 170 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 171 'slavebuilddir': 'remote_run', |
| 172 }) |
| 173 |
| 167 chromium_builders.extend([{ | 174 chromium_builders.extend([{ |
| 168 'name': 'linux_arm', | 175 'name': 'linux_arm', |
| 169 'factory': m_remote_run_chromium_src('chromium_trybot'), | 176 'factory': m_remote_run_chromium_src('chromium_trybot'), |
| 170 'slavebuilddir': 'remote_run', | 177 'slavebuilddir': 'remote_run', |
| 171 }, | 178 }, |
| 172 ]) | 179 ]) |
| 173 | 180 |
| 174 chromium_builders.append({ | 181 chromium_builders.append({ |
| 175 'name': 'linux_chromium_compile_dbg_32_ng', | 182 'name': 'linux_chromium_compile_dbg_32_ng', |
| 176 'factory': m_remote_run_chromium_src( | 183 'factory': m_remote_run_chromium_src( |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 # base.make_stop_form = hack_stop(base.make_stop_form) | 565 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 559 | 566 |
| 560 | 567 |
| 561 ####### PROJECT IDENTITY | 568 ####### PROJECT IDENTITY |
| 562 | 569 |
| 563 # The 'projectURL' string will be used to provide a link | 570 # The 'projectURL' string will be used to provide a link |
| 564 # from buildbot HTML pages to your project's home page. | 571 # from buildbot HTML pages to your project's home page. |
| 565 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 572 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 566 | 573 |
| 567 # vi: set ts=4 sts=2 sw=2 et: | 574 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |