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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 'name': 'mac_chromium_clang_upload', | 144 'name': 'mac_chromium_clang_upload', |
145 'factory': m_annotator.BaseFactory('chromium_clang_upload'), | 145 'factory': m_annotator.BaseFactory('chromium_clang_upload'), |
146 'slavebuilddir': 'build_and_upload_clang', | 146 'slavebuilddir': 'build_and_upload_clang', |
147 }) | 147 }) |
148 | 148 |
149 chromium_builders.append({ | 149 chromium_builders.append({ |
150 'name': 'mac_chromium_asan_rel_ng', | 150 'name': 'mac_chromium_asan_rel_ng', |
151 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), | 151 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), |
152 }) | 152 }) |
153 | 153 |
154 chromium_builders.append({ | |
155 'name': 'mac_deterministic', | |
156 'factory': m_annotator.BaseFactory('deterministic_build'), | |
157 }) | |
158 | |
159 # Optional GPU tryserver | 154 # Optional GPU tryserver |
160 chromium_builders.append({ | 155 chromium_builders.append({ |
161 'name': 'mac_optional_gpu_tests_rel', | 156 'name': 'mac_optional_gpu_tests_rel', |
162 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), | 157 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), |
163 # Share build directory with compatible existing builders to save space. | 158 # Share build directory with compatible existing builders to save space. |
164 'slavebuilddir': 'mac' | 159 'slavebuilddir': 'mac' |
165 }) | 160 }) |
166 | 161 |
167 # NaCl SDK try bots | 162 # NaCl SDK try bots |
168 b_mac_nacl_sdk = { | 163 b_mac_nacl_sdk = { |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 # base.make_stop_form = hack_stop(base.make_stop_form) | 353 # base.make_stop_form = hack_stop(base.make_stop_form) |
359 | 354 |
360 | 355 |
361 ####### PROJECT IDENTITY | 356 ####### PROJECT IDENTITY |
362 | 357 |
363 # The 'projectURL' string will be used to provide a link | 358 # The 'projectURL' string will be used to provide a link |
364 # from buildbot HTML pages to your project's home page. | 359 # from buildbot HTML pages to your project's home page. |
365 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 360 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
366 | 361 |
367 # vi: set ts=4 sts=2 sw=2 et: | 362 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |