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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 132 'name': 'mac_chromium_gn_upload', | 132 'name': 'mac_chromium_gn_upload', |
| 133 'factory': m_annotator.BaseFactory('chromium_gn_upload'), | 133 'factory': m_annotator.BaseFactory('chromium_gn_upload'), |
| 134 'slavebuilddir': 'mac_gn', | 134 'slavebuilddir': 'mac_gn', |
| 135 }]) | 135 }]) |
| 136 | 136 |
| 137 chromium_builders.append({ | 137 chromium_builders.append({ |
| 138 'name': 'mac_chromium_asan_rel_ng', | 138 'name': 'mac_chromium_asan_rel_ng', |
| 139 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), | 139 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), |
| 140 }) | 140 }) |
| 141 | 141 |
| 142 chromium_builders.append({ | |
| 143 'name': 'mac_deterministic', | |
| 144 'factory': m_annotator.BaseFactory('deterministic_build'), | |
| 145 'slavebuilddir': 'mac_deterministic' | |
|
M-A Ruel
2015/06/05 17:26:18
Not needed
Sébastien Marchand
2015/06/05 18:26:44
Done.
| |
| 146 }) | |
| 147 | |
| 142 # NaCl SDK try bots | 148 # NaCl SDK try bots |
| 143 b_mac_nacl_sdk = { | 149 b_mac_nacl_sdk = { |
| 144 'name': 'mac_nacl_sdk', | 150 'name': 'mac_nacl_sdk', |
| 145 'factory': m_annotator.BaseFactory('nacl/sdk'), | 151 'factory': m_annotator.BaseFactory('nacl/sdk'), |
| 146 } | 152 } |
| 147 | 153 |
| 148 # NaCl SDK build-only try bots | 154 # NaCl SDK build-only try bots |
| 149 b_mac_nacl_sdk_build = { | 155 b_mac_nacl_sdk_build = { |
| 150 'name': 'mac_nacl_sdk_build', | 156 'name': 'mac_nacl_sdk_build', |
| 151 'factory': m_annotator.BaseFactory('nacl/sdk_build'), | 157 'factory': m_annotator.BaseFactory('nacl/sdk_build'), |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 309 # base.make_stop_form = hack_stop(base.make_stop_form) | 315 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 310 | 316 |
| 311 | 317 |
| 312 ####### PROJECT IDENTITY | 318 ####### PROJECT IDENTITY |
| 313 | 319 |
| 314 # The 'projectURL' string will be used to provide a link | 320 # The 'projectURL' string will be used to provide a link |
| 315 # from buildbot HTML pages to your project's home page. | 321 # from buildbot HTML pages to your project's home page. |
| 316 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 322 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 317 | 323 |
| 318 # vi: set ts=4 sts=2 sw=2 et: | 324 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |