| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright 2015 The Chromium Authors. All rights reserved. | 4 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Triggerable | 9 from buildbot.scheduler import Triggerable |
| 10 from buildbot.schedulers.basic import SingleBranchScheduler | 10 from buildbot.schedulers.basic import SingleBranchScheduler |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'factory': F('v8/auto_roll_release_process'), | 103 'factory': F('v8/auto_roll_release_process'), |
| 104 'category': CATEGORY_RELEASE + '|clusterfuzz', | 104 'category': CATEGORY_RELEASE + '|clusterfuzz', |
| 105 'auto_reboot' : False, | 105 'auto_reboot' : False, |
| 106 }, | 106 }, |
| 107 ] | 107 ] |
| 108 | 108 |
| 109 | 109 |
| 110 scheduled_builders = [ | 110 scheduled_builders = [ |
| 111 { | 111 { |
| 112 'name': 'V8-Blink Win', | 112 'name': 'V8-Blink Win', |
| 113 'factory': F('blink_downstream'), | 113 'factory': m_remote_run('blink_downstream'), |
| 114 'category': CATEGORY_LAYOUT, | 114 'category': CATEGORY_LAYOUT, |
| 115 }, | 115 }, |
| 116 { | 116 { |
| 117 'name': 'V8-Blink Mac', | 117 'name': 'V8-Blink Mac', |
| 118 'factory': F('blink_downstream'), | 118 'factory': m_remote_run('blink_downstream'), |
| 119 'category': CATEGORY_LAYOUT, | 119 'category': CATEGORY_LAYOUT, |
| 120 }, | 120 }, |
| 121 { | 121 { |
| 122 'name': 'V8-Blink Linux 64', | 122 'name': 'V8-Blink Linux 64', |
| 123 'factory': F('blink_downstream'), | 123 'factory': m_remote_run('blink_downstream'), |
| 124 'category': CATEGORY_LAYOUT, | 124 'category': CATEGORY_LAYOUT, |
| 125 # Build all revisions. | 125 # Build all revisions. |
| 126 'mergeRequests': False, | 126 'mergeRequests': False, |
| 127 }, | 127 }, |
| 128 { | 128 { |
| 129 'name': 'V8-Blink Linux 64 - ignition', | 129 'name': 'V8-Blink Linux 64 - ignition', |
| 130 'factory': F('blink_downstream'), | 130 'factory': m_remote_run('blink_downstream'), |
| 131 'category': CATEGORY_LAYOUT, | 131 'category': CATEGORY_LAYOUT, |
| 132 }, | 132 }, |
| 133 { | 133 { |
| 134 'name': 'V8-Blink Linux 64 (dbg)', | 134 'name': 'V8-Blink Linux 64 (dbg)', |
| 135 'factory': F('blink_downstream'), | 135 'factory': m_remote_run('blink_downstream'), |
| 136 'category': CATEGORY_LAYOUT, | 136 'category': CATEGORY_LAYOUT, |
| 137 }, | 137 }, |
| 138 { | 138 { |
| 139 'name': 'Linux Debug Builder', | 139 'name': 'Linux Debug Builder', |
| 140 'factory': m_remote_run('chromium', triggers=['cr_linux_dbg']), | 140 'factory': m_remote_run('chromium', triggers=['cr_linux_dbg']), |
| 141 'category': CATEGORY_NONLAYOUT, | 141 'category': CATEGORY_NONLAYOUT, |
| 142 }, | 142 }, |
| 143 { | 143 { |
| 144 'name': 'V8 Linux GN', | 144 'name': 'V8 Linux GN', |
| 145 'factory': m_remote_run('chromium'), | 145 'factory': m_remote_run('chromium'), |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 mail_notifier_cfg.Update(config, ActiveMaster, c) | 303 mail_notifier_cfg.Update(config, ActiveMaster, c) |
| 304 | 304 |
| 305 # Adjust the buildCaches to be 3x the number of slaves per builder. | 305 # Adjust the buildCaches to be 3x the number of slaves per builder. |
| 306 c['autoBuildCacheRatio'] = 3 | 306 c['autoBuildCacheRatio'] = 3 |
| 307 | 307 |
| 308 | 308 |
| 309 ####### PROJECT IDENTITY | 309 ####### PROJECT IDENTITY |
| 310 | 310 |
| 311 c['projectName'] = ActiveMaster.project_name | 311 c['projectName'] = ActiveMaster.project_name |
| 312 c['projectURL'] = config.Master.project_url | 312 c['projectURL'] = config.Master.project_url |
| OLD | NEW |