Chromium Code Reviews| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 149 'auto_reboot' : False, | 149 'auto_reboot' : False, |
| 150 'category': '1cron', | 150 'category': '1cron', |
| 151 }, | 151 }, |
| 152 { | 152 { |
| 153 'name': 'recipe-autoroller-public', | 153 'name': 'recipe-autoroller-public', |
| 154 'factory': f_annotations.BaseFactory('infra/recipe_autoroller_public'), | 154 'factory': f_annotations.BaseFactory('infra/recipe_autoroller_public'), |
| 155 'auto_reboot' : True, | 155 'auto_reboot' : True, |
| 156 'category': '1cron', | 156 'category': '1cron', |
| 157 }, | 157 }, |
| 158 { | 158 { |
| 159 'name': 'Chromium Android Find Annotated Test', | |
|
jbudorick
2016/06/20 09:28:26
What's your reasoning behind putting this on chrom
the real yoland
2016/06/21 23:16:08
Because I thought all the timely scheduled jobs be
jbudorick
2016/06/22 10:21:37
No, that's definitely not the case. This is specif
| |
| 160 'factory': f_annotations.BaseFactory(recipe='find_annonated_tests'), | |
| 161 'category': '1cron', | |
| 162 { | |
| 159 'name': 'Chromium Linux Codesearch', | 163 'name': 'Chromium Linux Codesearch', |
| 160 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), | 164 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), |
| 161 'category': '2codesearch', | 165 'category': '2codesearch', |
| 162 }, | 166 }, |
| 163 { | 167 { |
| 164 'name': 'ChromiumOS Codesearch', | 168 'name': 'ChromiumOS Codesearch', |
| 165 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), | 169 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), |
| 166 'category': '2codesearch', | 170 'category': '2codesearch', |
| 167 }, | 171 }, |
| 168 { | 172 { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 206 branch=None, | 210 branch=None, |
| 207 builderNames=['publish_tarball'], | 211 builderNames=['publish_tarball'], |
| 208 hour=range(0, 24, 3), | 212 hour=range(0, 24, 3), |
| 209 ), | 213 ), |
| 210 Nightly( | 214 Nightly( |
| 211 name='codesearch-scheduler', | 215 name='codesearch-scheduler', |
| 212 branch='master', | 216 branch='master', |
| 213 hour=range(0, 24, 4), | 217 hour=range(0, 24, 4), |
| 214 minute=0, | 218 minute=0, |
| 215 builderNames=['Chromium Linux Codesearch', 'ChromiumOS Codesearch']), | 219 builderNames=['Chromium Linux Codesearch', 'ChromiumOS Codesearch']), |
| 220 Nightly( | |
| 221 name='find_annotated_tests', | |
| 222 branch='master', | |
| 223 hour=range(0, 24, 4), | |
| 224 minute=0, | |
| 225 builderNames=['Chromium Android Find Annotated Tests']), | |
| 216 | 226 |
| 217 # Trigger this builder on any change anywhere. | 227 # Trigger this builder on any change anywhere. |
| 218 AnyBranchScheduler( | 228 AnyBranchScheduler( |
| 219 name='git-hash-metrics', | 229 name='git-hash-metrics', |
| 220 builderNames=['git-hash-metrics']), | 230 builderNames=['git-hash-metrics']), |
| 221 ]) | 231 ]) |
| 222 | 232 |
| 223 ####### BUILDSLAVES | 233 ####### BUILDSLAVES |
| 224 | 234 |
| 225 # Associate the slaves to the builders. The configuration is in slaves.cfg. | 235 # Associate the slaves to the builders. The configuration is in slaves.cfg. |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 256 sendToInterestedUsers=False, | 266 sendToInterestedUsers=False, |
| 257 extraRecipients=['blink-infra+alerts@google.com', | 267 extraRecipients=['blink-infra+alerts@google.com', |
| 258 'chrome-troopers+alerts@google.com'], | 268 'chrome-troopers+alerts@google.com'], |
| 259 ), | 269 ), |
| 260 ]) | 270 ]) |
| 261 | 271 |
| 262 ####### PROJECT IDENTITY | 272 ####### PROJECT IDENTITY |
| 263 | 273 |
| 264 c['projectName'] = ActiveMaster.project_name | 274 c['projectName'] = ActiveMaster.project_name |
| 265 c['buildbotURL'] = ActiveMaster.buildbot_url | 275 c['buildbotURL'] = ActiveMaster.buildbot_url |
| OLD | NEW |