| 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 import config | 8 import config |
| 9 import master_site_config | 9 import master_site_config |
| 10 | 10 |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 'auto_reboot' : False, | 151 'auto_reboot' : False, |
| 152 'category': '1cron', | 152 'category': '1cron', |
| 153 }, | 153 }, |
| 154 { | 154 { |
| 155 'name': 'w3c-test-autoroller', | 155 'name': 'w3c-test-autoroller', |
| 156 'factory': m_remote_run('w3c_test_autoroller'), | 156 'factory': m_remote_run('w3c_test_autoroller'), |
| 157 'auto_reboot' : True, | 157 'auto_reboot' : True, |
| 158 'category': '1cron', | 158 'category': '1cron', |
| 159 }, | 159 }, |
| 160 { | 160 { |
| 161 'name': 'GAE SDK CIPD Packager', |
| 162 'factory': f_annotations.BaseFactory(recipe='infra/gae_sdk_cipd_packager'), |
| 163 'category': '1cron', |
| 164 }, |
| 165 { |
| 161 'name': 'Chromium Linux Codesearch', | 166 'name': 'Chromium Linux Codesearch', |
| 162 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), | 167 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), |
| 163 'category': '2codesearch', | 168 'category': '2codesearch', |
| 164 }, | 169 }, |
| 165 { | 170 { |
| 166 'name': 'ChromiumOS Codesearch', | 171 'name': 'ChromiumOS Codesearch', |
| 167 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), | 172 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), |
| 168 'category': '2codesearch', | 173 'category': '2codesearch', |
| 169 }, | 174 }, |
| 170 { | 175 { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 branch='master', | 212 branch='master', |
| 208 hour=range(0, 24, 4), | 213 hour=range(0, 24, 4), |
| 209 minute=0, | 214 minute=0, |
| 210 builderNames=['Chromium Linux Codesearch', 'ChromiumOS Codesearch']), | 215 builderNames=['Chromium Linux Codesearch', 'ChromiumOS Codesearch']), |
| 211 Nightly( | 216 Nightly( |
| 212 name='w3c-test-autoroller-scheduler', | 217 name='w3c-test-autoroller-scheduler', |
| 213 branch='master', | 218 branch='master', |
| 214 hour=[6], | 219 hour=[6], |
| 215 minute=0, | 220 minute=0, |
| 216 builderNames=['w3c-test-autoroller']), | 221 builderNames=['w3c-test-autoroller']), |
| 222 Nightly( |
| 223 name='gae-sdk-scheduler', |
| 224 branch='master', |
| 225 hour=range(0, 24, 4), |
| 226 minute=0, |
| 227 builderNames=['GAE SDK CIPD Packager']), |
| 217 | 228 |
| 218 # Trigger this builder on any change anywhere. | 229 # Trigger this builder on any change anywhere. |
| 219 AnyBranchScheduler( | 230 AnyBranchScheduler( |
| 220 name='git-hash-metrics', | 231 name='git-hash-metrics', |
| 221 builderNames=['git-hash-metrics']), | 232 builderNames=['git-hash-metrics']), |
| 222 ]) | 233 ]) |
| 223 | 234 |
| 224 ####### BUILDSLAVES | 235 ####### BUILDSLAVES |
| 225 | 236 |
| 226 # Associate the slaves to the builders. The configuration is in slaves.cfg. | 237 # Associate the slaves to the builders. The configuration is in slaves.cfg. |
| (...skipping 30 matching lines...) Expand all Loading... |
| 257 sendToInterestedUsers=False, | 268 sendToInterestedUsers=False, |
| 258 extraRecipients=['blink-infra+alerts@google.com', | 269 extraRecipients=['blink-infra+alerts@google.com', |
| 259 'chrome-troopers+alerts@google.com'], | 270 'chrome-troopers+alerts@google.com'], |
| 260 ), | 271 ), |
| 261 ]) | 272 ]) |
| 262 | 273 |
| 263 ####### PROJECT IDENTITY | 274 ####### PROJECT IDENTITY |
| 264 | 275 |
| 265 c['projectName'] = ActiveMaster.project_name | 276 c['projectName'] = ActiveMaster.project_name |
| 266 c['buildbotURL'] = ActiveMaster.buildbot_url | 277 c['buildbotURL'] = ActiveMaster.buildbot_url |
| OLD | NEW |