| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 repository='https://chromium.googlesource.com/chromium/tools/build.git', | 65 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| 66 recipe=recipe, | 66 recipe=recipe, |
| 67 factory_properties={'path_config': 'kitchen'}, | 67 factory_properties={'path_config': 'kitchen'}, |
| 68 **kwargs) | 68 **kwargs) |
| 69 | 69 |
| 70 | 70 |
| 71 for targ in ('_rel', '_dbg'): | 71 for targ in ('_rel', '_dbg'): |
| 72 chromium_builders.extend([{ | 72 chromium_builders.extend([{ |
| 73 'name': 'win_chromium%s_ng' % targ, | 73 'name': 'win_chromium%s_ng' % targ, |
| 74 'factory': m_remote_run( | 74 'factory': m_remote_run( |
| 75 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), | 75 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME), |
| 76 'slavebuilddir': 'remote_run' | 76 'slavebuilddir': 'remote_run' |
| 77 }, { | 77 }, { |
| 78 'name': 'win_chromium_compile%s_ng' % targ, | 78 'name': 'win_chromium_compile%s_ng' % targ, |
| 79 'factory': m_remote_run( | 79 'factory': m_remote_run( |
| 80 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), | 80 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME), |
| 81 'slavebuilddir': 'remote_run' | 81 'slavebuilddir': 'remote_run' |
| 82 }]) | 82 }]) |
| 83 | 83 |
| 84 chromium_builders.append({ | 84 chromium_builders.append({ |
| 85 'name': 'win10_chromium_x64_rel_ng', | 85 'name': 'win10_chromium_x64_rel_ng', |
| 86 'factory': m_remote_run('chromium_trybot', timeout=3600), | 86 'factory': m_remote_run('chromium_trybot', timeout=3600), |
| 87 'slavebuilddir': 'remote_run', | 87 'slavebuilddir': 'remote_run', |
| 88 }) | 88 }) |
| 89 | 89 |
| 90 chromium_builders.append({ | 90 chromium_builders.append({ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 101 | 101 |
| 102 chromium_builders.append({ | 102 chromium_builders.append({ |
| 103 'name': 'win_x64_archive', | 103 'name': 'win_x64_archive', |
| 104 'factory': m_remote_run('chromium_trybot', timeout=3600), | 104 'factory': m_remote_run('chromium_trybot', timeout=3600), |
| 105 'slavebuilddir': 'remote_run', | 105 'slavebuilddir': 'remote_run', |
| 106 }) | 106 }) |
| 107 | 107 |
| 108 chromium_builders.append({ | 108 chromium_builders.append({ |
| 109 'name': 'win_chromium_x64_rel_ng', | 109 'name': 'win_chromium_x64_rel_ng', |
| 110 'factory': m_remote_run( | 110 'factory': m_remote_run( |
| 111 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME_WIN), | 111 'chromium_trybot', timeout=3600, max_time=master_utils.CQ_MAX_TIME), |
| 112 'slavebuilddir': 'remote_run' | 112 'slavebuilddir': 'remote_run' |
| 113 }) | 113 }) |
| 114 | 114 |
| 115 chromium_builders.extend([{ | 115 chromium_builders.extend([{ |
| 116 'name': 'win8_chromium_gn_upload', | 116 'name': 'win8_chromium_gn_upload', |
| 117 'factory': base_factory('chromium_gn_upload'), | 117 'factory': base_factory('chromium_gn_upload'), |
| 118 'slavebuilddir': 'win_gn', | 118 'slavebuilddir': 'win_gn', |
| 119 }, | 119 }, |
| 120 ]) | 120 ]) |
| 121 | 121 |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 # base.make_stop_form = hack_stop(base.make_stop_form) | 371 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 372 | 372 |
| 373 | 373 |
| 374 ####### PROJECT IDENTITY | 374 ####### PROJECT IDENTITY |
| 375 | 375 |
| 376 # The 'projectURL' string will be used to provide a link | 376 # The 'projectURL' string will be used to provide a link |
| 377 # from buildbot HTML pages to your project's home page. | 377 # from buildbot HTML pages to your project's home page. |
| 378 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 378 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 379 | 379 |
| 380 # vi: set ts=4 sts=2 sw=2 et: | 380 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |