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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 223 | 223 |
| 224 # This bot builds and upload GN binaries to cloud storage. | 224 # This bot builds and upload GN binaries to cloud storage. |
| 225 # We do not reuse the 'linux_chromium_gn' slavebuilddir because the upload | 225 # We do not reuse the 'linux_chromium_gn' slavebuilddir because the upload |
| 226 # bots need the linux sysroots and hence require src-internal. | 226 # bots need the linux sysroots and hence require src-internal. |
| 227 chromium_builders.append({ | 227 chromium_builders.append({ |
| 228 'name': 'linux_chromium_gn_upload', | 228 'name': 'linux_chromium_gn_upload', |
| 229 'factory': m_annotator.BaseFactory('chromium_gn_upload'), | 229 'factory': m_annotator.BaseFactory('chromium_gn_upload'), |
| 230 'slavebuilddir': 'build_and_upload_gn', | 230 'slavebuilddir': 'build_and_upload_gn', |
| 231 }) | 231 }) |
| 232 | 232 |
| 233 # This bot builds and upload Clang binaries to cloud storage. | |
| 234 # We do not reuse the 'linux_chromium_gn' slavebuilddir because the upload | |
| 235 # bots need the Android build dependencies. | |
|
Dirk Pranke
2016/02/11 01:26:07
nit: I don't know that I would bother w/ the comme
krasin1
2016/02/11 18:02:56
Done.
| |
| 236 chromium_builders.append({ | |
| 237 'name': 'linux_chromium_clang_upload', | |
| 238 'factory': m_annotator.BaseFactory('chromium_clang_upload'), | |
| 239 'slavebuilddir': 'build_and_upload_clang', | |
| 240 }) | |
| 241 | |
| 233 # Chromecast builders using chromium_trybot | 242 # Chromecast builders using chromium_trybot |
| 234 chromium_builders.extend([{ | 243 chromium_builders.extend([{ |
| 235 'name': 'cast_shell_linux', | 244 'name': 'cast_shell_linux', |
| 236 'factory': m_annotator.BaseFactory( | 245 'factory': m_annotator.BaseFactory( |
| 237 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 246 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
| 238 }, | 247 }, |
| 239 ]) | 248 ]) |
| 240 | 249 |
| 241 chromium_builders.append({ | 250 chromium_builders.append({ |
| 242 'name': 'linux_deterministic', | 251 'name': 'linux_deterministic', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 473 # base.make_stop_form = hack_stop(base.make_stop_form) | 482 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 474 | 483 |
| 475 | 484 |
| 476 ####### PROJECT IDENTITY | 485 ####### PROJECT IDENTITY |
| 477 | 486 |
| 478 # The 'projectURL' string will be used to provide a link | 487 # The 'projectURL' string will be used to provide a link |
| 479 # from buildbot HTML pages to your project's home page. | 488 # from buildbot HTML pages to your project's home page. |
| 480 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 489 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 481 | 490 |
| 482 # vi: set ts=4 sts=2 sw=2 et: | 491 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |