| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), | 163 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), |
| 164 'category': '2codesearch', | 164 'category': '2codesearch', |
| 165 }, | 165 }, |
| 166 { | 166 { |
| 167 'name': 'ChromiumOS Codesearch', | 167 'name': 'ChromiumOS Codesearch', |
| 168 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), | 168 'factory': f_annotations.BaseFactory(recipe='chromium_codesearch'), |
| 169 'category': '2codesearch', | 169 'category': '2codesearch', |
| 170 }, | 170 }, |
| 171 { | 171 { |
| 172 'name': 'git-hash-metrics', | 172 'name': 'git-hash-metrics', |
| 173 'factory': f_annotations.BaseFactory(recipe='git_hash_metric'), | 173 'factory': f_annotations.BaseFactory(recipe='infra/git_hash_metric'), |
| 174 'category': '3monitoring', | 174 'category': '3monitoring', |
| 175 }, | 175 }, |
| 176 ]) | 176 ]) |
| 177 | 177 |
| 178 ####### SCHEDULERS | 178 ####### SCHEDULERS |
| 179 | 179 |
| 180 c['schedulers'].extend([ | 180 c['schedulers'].extend([ |
| 181 # Period is intentionally small so that if a builder fails fast, it also | 181 # Period is intentionally small so that if a builder fails fast, it also |
| 182 # gets restarted fast. | 182 # gets restarted fast. |
| 183 Periodic( | 183 Periodic( |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 sendToInterestedUsers=False, | 260 sendToInterestedUsers=False, |
| 261 extraRecipients=['blink-infra+alerts@google.com', | 261 extraRecipients=['blink-infra+alerts@google.com', |
| 262 'chrome-troopers+alerts@google.com'], | 262 'chrome-troopers+alerts@google.com'], |
| 263 ), | 263 ), |
| 264 ]) | 264 ]) |
| 265 | 265 |
| 266 ####### PROJECT IDENTITY | 266 ####### PROJECT IDENTITY |
| 267 | 267 |
| 268 c['projectName'] = ActiveMaster.project_name | 268 c['projectName'] = ActiveMaster.project_name |
| 269 c['buildbotURL'] = ActiveMaster.buildbot_url | 269 c['buildbotURL'] = ActiveMaster.buildbot_url |
| OLD | NEW |