| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 # Share build directory with compatible existing builders to save space. | 79 # Share build directory with compatible existing builders to save space. |
| 80 'slavebuilddir': 'win', | 80 'slavebuilddir': 'win', |
| 81 }) | 81 }) |
| 82 | 82 |
| 83 chromium_builders.append({ | 83 chromium_builders.append({ |
| 84 'name': 'win_archive', | 84 'name': 'win_archive', |
| 85 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), | 85 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), |
| 86 }) | 86 }) |
| 87 | 87 |
| 88 chromium_builders.append({ | 88 chromium_builders.append({ |
| 89 'name': 'win_x64_archive', |
| 90 'factory': m_annotator.BaseFactory('chromium_trybot', timeout=3600), |
| 91 }) |
| 92 |
| 93 chromium_builders.append({ |
| 89 'name': 'win_chromium_x64_rel_ng', | 94 'name': 'win_chromium_x64_rel_ng', |
| 90 'factory': m_annotator.BaseFactory( | 95 'factory': m_annotator.BaseFactory( |
| 91 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), | 96 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), |
| 92 # Share build directory with compatible existing builders to save space. | 97 # Share build directory with compatible existing builders to save space. |
| 93 'slavebuilddir': 'win' | 98 'slavebuilddir': 'win' |
| 94 }) | 99 }) |
| 95 | 100 |
| 96 chromium_builders.extend([{ | 101 chromium_builders.extend([{ |
| 97 'name': 'win8_chromium_ng', | 102 'name': 'win8_chromium_ng', |
| 98 'factory': m_annotator.BaseFactory('chromium_trybot'), | 103 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 99 'slavebuilddir': 'win_gn', | 104 'slavebuilddir': 'win_gn', |
| 100 },{ | 105 },{ |
| 101 'name': 'win_chromium_gn_x64_dbg', | |
| 102 'factory': m_annotator.BaseFactory('chromium_trybot'), | |
| 103 'slavebuilddir': 'win_gn', | |
| 104 },{ | |
| 105 'name': 'win_chromium_gn_x64_rel', | |
| 106 'factory': m_annotator.BaseFactory('chromium_trybot'), | |
| 107 'slavebuilddir': 'win_gn', | |
| 108 },{ | |
| 109 'name': 'win8_chromium_gn_dbg', | 106 'name': 'win8_chromium_gn_dbg', |
| 110 'factory': m_annotator.BaseFactory('chromium_trybot'), | 107 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 111 'slavebuilddir': 'win_gn', | 108 'slavebuilddir': 'win_gn', |
| 112 },{ | 109 },{ |
| 113 'name': 'win8_chromium_gn_upload', | 110 'name': 'win8_chromium_gn_upload', |
| 114 'factory': m_annotator.BaseFactory('chromium_gn_upload'), | 111 'factory': m_annotator.BaseFactory('chromium_gn_upload'), |
| 115 'slavebuilddir': 'win_gn', | 112 'slavebuilddir': 'win_gn', |
| 116 }, | 113 }, |
| 117 ]) | 114 ]) |
| 118 | 115 |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 # base.make_stop_form = hack_stop(base.make_stop_form) | 364 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 368 | 365 |
| 369 | 366 |
| 370 ####### PROJECT IDENTITY | 367 ####### PROJECT IDENTITY |
| 371 | 368 |
| 372 # The 'projectURL' string will be used to provide a link | 369 # The 'projectURL' string will be used to provide a link |
| 373 # from buildbot HTML pages to your project's home page. | 370 # from buildbot HTML pages to your project's home page. |
| 374 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 371 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 375 | 372 |
| 376 # vi: set ts=4 sts=2 sw=2 et: | 373 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |