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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 'slavebuilddir': 'linux_chromium_gn_chromeos' | 196 'slavebuilddir': 'linux_chromium_gn_chromeos' |
197 }, { | 197 }, { |
198 'name': 'android_chromium_gn_compile%s' % targ, | 198 'name': 'android_chromium_gn_compile%s' % targ, |
199 'factory': m_annotator.BaseFactory( | 199 'factory': m_annotator.BaseFactory( |
200 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), | 200 'chromium_trybot', max_time=master_utils.CQ_MAX_TIME), |
201 # Share build directory with compatible existing builders to save space. | 201 # Share build directory with compatible existing builders to save space. |
202 'slavebuilddir': 'android_chromium_gn' | 202 'slavebuilddir': 'android_chromium_gn' |
203 }]) | 203 }]) |
204 | 204 |
205 chromium_builders.append({ | 205 chromium_builders.append({ |
| 206 'name': 'ned_tests_rel_ng', |
| 207 'factory': m_annotator.BaseFactory( |
| 208 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME), |
| 209 # Share build directory with compatible existing builders to save space. |
| 210 'slavebuilddir': 'linux' |
| 211 }) |
| 212 chromium_builders.append({ |
206 'name': 'linux_chromium_chromeos_asan_rel_ng', | 213 'name': 'linux_chromium_chromeos_asan_rel_ng', |
207 'factory': m_annotator.BaseFactory('chromium_trybot'), | 214 'factory': m_annotator.BaseFactory('chromium_trybot'), |
208 # Share build directory with compatible existing builders to save space. | 215 # Share build directory with compatible existing builders to save space. |
209 'slavebuilddir': 'linux_chromeos_asan', | 216 'slavebuilddir': 'linux_chromeos_asan', |
210 }) | 217 }) |
211 | 218 |
212 for board in ('x86-generic', 'amd64-generic', 'daisy'): | 219 for board in ('x86-generic', 'amd64-generic', 'daisy'): |
213 chromium_builders.append({ | 220 chromium_builders.append({ |
214 'name': 'chromeos_%s_chromium_compile_only_ng' % (board,), | 221 'name': 'chromeos_%s_chromium_compile_only_ng' % (board,), |
215 'factory': m_annotator.BaseFactory( | 222 'factory': m_annotator.BaseFactory( |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
554 # base.make_stop_form = hack_stop(base.make_stop_form) | 561 # base.make_stop_form = hack_stop(base.make_stop_form) |
555 | 562 |
556 | 563 |
557 ####### PROJECT IDENTITY | 564 ####### PROJECT IDENTITY |
558 | 565 |
559 # The 'projectURL' string will be used to provide a link | 566 # The 'projectURL' string will be used to provide a link |
560 # from buildbot HTML pages to your project's home page. | 567 # from buildbot HTML pages to your project's home page. |
561 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 568 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
562 | 569 |
563 # vi: set ts=4 sts=2 sw=2 et: | 570 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |