OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from buildbot.scheduler import Triggerable | 5 from buildbot.scheduler import Triggerable |
6 from buildbot.schedulers.basic import SingleBranchScheduler | 6 from buildbot.schedulers.basic import SingleBranchScheduler |
7 | 7 |
8 from master.factory import annotator_factory | 8 from master.factory import annotator_factory |
9 | 9 |
10 m_annotator = annotator_factory.AnnotatorFactory() | 10 m_annotator = annotator_factory.AnnotatorFactory() |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 'name': 'Win Builder (dbg)', | 81 'name': 'Win Builder (dbg)', |
82 'triggers': ['win_dbg_trigger'], | 82 'triggers': ['win_dbg_trigger'], |
83 }, | 83 }, |
84 {'name': 'Win7 Tests (dbg)(1)'}, | 84 {'name': 'Win7 Tests (dbg)(1)'}, |
85 {'name': 'Win7 Tests (dbg)(2)'}, | 85 {'name': 'Win7 Tests (dbg)(2)'}, |
86 {'name': 'Win7 Tests (dbg)(3)'}, | 86 {'name': 'Win7 Tests (dbg)(3)'}, |
87 {'name': 'Win7 Tests (dbg)(4)'}, | 87 {'name': 'Win7 Tests (dbg)(4)'}, |
88 {'name': 'Win7 Tests (dbg)(5)'}, | 88 {'name': 'Win7 Tests (dbg)(5)'}, |
89 {'name': 'Win7 Tests (dbg)(6)'}, | 89 {'name': 'Win7 Tests (dbg)(6)'}, |
90 {'name': 'Interactive Tests (dbg)'}, | 90 {'name': 'Interactive Tests (dbg)'}, |
91 {'name': 'Win8 Aura'}, | 91 # Temporary huge timeout to debug http://crbug.com/340422. |
| 92 {'name': 'Win8 Aura', 'timeout': 86400 }, |
92 ] | 93 ] |
93 | 94 |
94 c['builders'].extend([ | 95 c['builders'].extend([ |
95 { | 96 { |
96 'name': spec['name'], | 97 'name': spec['name'], |
97 'factory': m_annotator.BaseFactory( | 98 'factory': m_annotator.BaseFactory( |
98 'chromium', | 99 'chromium', |
99 factory_properties=spec.get('factory_properties'), | 100 factory_properties=spec.get('factory_properties'), |
100 triggers=spec.get('triggers'), | 101 triggers=spec.get('triggers'), |
101 timeout=2400), | 102 timeout=spec.get('timeout', 2400)), |
102 'notify_on_missing': True, | 103 'notify_on_missing': True, |
103 'category': '2windows', | 104 'category': '2windows', |
104 } for spec in specs | 105 } for spec in specs |
105 ]) | 106 ]) |
OLD | NEW |