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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 216 # This bot builds and upload GN binaries to cloud storage. | 216 # This bot builds and upload GN binaries to cloud storage. |
| 217 # We do not reuse the 'linux_chromium_gn' slavebuilddir because the upload | 217 # We do not reuse the 'linux_chromium_gn' slavebuilddir because the upload |
| 218 # bots need the linux sysroots and hence require src-internal. | 218 # bots need the linux sysroots and hence require src-internal. |
| 219 chromium_builders.append({ | 219 chromium_builders.append({ |
| 220 'name': 'linux_chromium_gn_upload', | 220 'name': 'linux_chromium_gn_upload', |
| 221 'factory': m_annotator.BaseFactory('chromium_gn_upload'), | 221 'factory': m_annotator.BaseFactory('chromium_gn_upload'), |
| 222 'slavebuilddir': 'build_and_upload_gn', | 222 'slavebuilddir': 'build_and_upload_gn', |
| 223 }) | 223 }) |
| 224 | 224 |
| 225 chromium_builders.append({ | 225 chromium_builders.append({ |
| 226 'name': 'linux_chromium_clang_upload', | 226 'name': 'linux_upload_clang', |
| 227 'factory': m_annotator.BaseFactory('chromium_clang_upload'), | 227 'factory': m_annotator.BaseFactory('chromium_upload_clang'), |
|
krasin
2016/04/05 18:16:00
This line looks suspicious, because the rest of th
Nico
2016/04/05 18:20:19
Oh, you're right, good catch! Done, renamed the fa
| |
| 228 'slavebuilddir': 'build_and_upload_clang', | 228 'slavebuilddir': 'linux_upload_clang', |
| 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 |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 548 # base.make_stop_form = hack_stop(base.make_stop_form) | 548 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 549 | 549 |
| 550 | 550 |
| 551 ####### PROJECT IDENTITY | 551 ####### PROJECT IDENTITY |
| 552 | 552 |
| 553 # The 'projectURL' string will be used to provide a link | 553 # The 'projectURL' string will be used to provide a link |
| 554 # from buildbot HTML pages to your project's home page. | 554 # from buildbot HTML pages to your project's home page. |
| 555 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 555 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 556 | 556 |
| 557 # vi: set ts=4 sts=2 sw=2 et: | 557 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |