Chromium Code Reviews| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 197 }) | 197 }) |
| 198 | 198 |
| 199 # Chromecast builders using chromium_trybot | 199 # Chromecast builders using chromium_trybot |
| 200 chromium_builders.extend([{ | 200 chromium_builders.extend([{ |
| 201 'name': 'cast_shell_linux', | 201 'name': 'cast_shell_linux', |
| 202 'factory': baseFactory( | 202 'factory': baseFactory( |
| 203 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 203 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 204 }, | 204 }, |
| 205 ]) | 205 ]) |
| 206 | 206 |
| 207 chromium_builders.extend([{ | |
| 208 'name': 'Blimp Linux (dbg)', | |
|
Sergey Berezin
2016/06/06 22:00:53
The naming convention for the tryserver is names_w
haibinlu
2016/06/06 23:06:49
Done.
| |
| 209 'factory': baseFactory( | |
| 210 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | |
| 211 }, | |
|
Sergey Berezin
2016/06/06 22:00:53
quick check: does your builder require a separate
haibinlu
2016/06/06 23:06:49
added slavebuilddir since blimp engine builds with
| |
| 212 ]) | |
| 213 | |
| 207 b_linux_site_isolation = { | 214 b_linux_site_isolation = { |
| 208 'name': 'linux_site_isolation', | 215 'name': 'linux_site_isolation', |
| 209 'factory': baseFactory('chromium_trybot'), | 216 'factory': baseFactory('chromium_trybot'), |
| 210 # Share build directory with compatible existing builders to save space. | 217 # Share build directory with compatible existing builders to save space. |
| 211 'slavebuilddir': 'linux', | 218 'slavebuilddir': 'linux', |
| 212 } | 219 } |
| 213 | 220 |
| 214 b_linux_chromium_asan_rel_ng = { | 221 b_linux_chromium_asan_rel_ng = { |
| 215 'name': 'linux_chromium_asan_rel_ng', | 222 'name': 'linux_chromium_asan_rel_ng', |
| 216 'factory': baseFactory( | 223 'factory': baseFactory( |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 512 # base.make_stop_form = hack_stop(base.make_stop_form) | 519 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 513 | 520 |
| 514 | 521 |
| 515 ####### PROJECT IDENTITY | 522 ####### PROJECT IDENTITY |
| 516 | 523 |
| 517 # The 'projectURL' string will be used to provide a link | 524 # The 'projectURL' string will be used to provide a link |
| 518 # from buildbot HTML pages to your project's home page. | 525 # from buildbot HTML pages to your project's home page. |
| 519 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 526 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 520 | 527 |
| 521 # vi: set ts=4 sts=2 sw=2 et: | 528 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |