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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 }) | 123 }) |
124 | 124 |
125 chromium_builders.extend([{ | 125 chromium_builders.extend([{ |
126 'name': 'win_pgo', | 126 'name': 'win_pgo', |
127 'factory': m_annotator.BaseFactory('chromium_pgo', timeout=24000), | 127 'factory': m_annotator.BaseFactory('chromium_pgo', timeout=24000), |
128 'slavebuilddir': 'win', | 128 'slavebuilddir': 'win', |
129 }, | 129 }, |
130 ]) | 130 ]) |
131 | 131 |
132 chromium_builders.append({ | 132 chromium_builders.append({ |
133 'name': 'win_deterministic', | |
134 'factory': m_annotator.BaseFactory('deterministic_build'), | |
135 'slavebuilddir': 'det', | |
136 }) | |
137 | |
138 chromium_builders.append({ | |
139 'name': 'win_chromium_syzyasan_rel', | 133 'name': 'win_chromium_syzyasan_rel', |
140 'factory': m_annotator.BaseFactory('chromium_trybot'), | 134 'factory': m_annotator.BaseFactory('chromium_trybot'), |
141 'slavebuilddir': 'win', | 135 'slavebuilddir': 'win', |
142 }) | 136 }) |
143 | 137 |
144 # Experimental clang/win bots | 138 # Experimental clang/win bots |
145 chromium_builders.append({ | 139 chromium_builders.append({ |
146 'name': 'win_clang', | 140 'name': 'win_clang', |
147 'factory': m_annotator.BaseFactory('chromium_trybot'), | 141 'factory': m_annotator.BaseFactory('chromium_trybot'), |
148 'slavebuilddir': 'win_clang', | 142 'slavebuilddir': 'win_clang', |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 # base.make_stop_form = hack_stop(base.make_stop_form) | 362 # base.make_stop_form = hack_stop(base.make_stop_form) |
369 | 363 |
370 | 364 |
371 ####### PROJECT IDENTITY | 365 ####### PROJECT IDENTITY |
372 | 366 |
373 # The 'projectURL' string will be used to provide a link | 367 # The 'projectURL' string will be used to provide a link |
374 # from buildbot HTML pages to your project's home page. | 368 # from buildbot HTML pages to your project's home page. |
375 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 369 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
376 | 370 |
377 # vi: set ts=4 sts=2 sw=2 et: | 371 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |