Chromium Code Reviews| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 { | 52 { |
| 53 'name': spec['name'], | 53 'name': spec['name'], |
| 54 'factory': m_annotator.BaseFactory( | 54 'factory': m_annotator.BaseFactory( |
| 55 spec.get('recipe', 'chromium'), | 55 spec.get('recipe', 'chromium'), |
| 56 factory_properties=spec.get('factory_properties'), | 56 factory_properties=spec.get('factory_properties'), |
| 57 triggers=spec.get('triggers')), | 57 triggers=spec.get('triggers')), |
| 58 'notify_on_missing': True, | 58 'notify_on_missing': True, |
| 59 'category': '4linux', | 59 'category': '4linux', |
| 60 } for spec in specs | 60 } for spec in specs |
| 61 ]) | 61 ]) |
| 62 | |
| 63 b_linux_deterministic_build = { | |
| 64 'name': 'Linux deterministic build', | |
| 65 # Work around an issue with NaCl build. | |
|
Nico
2015/06/04 21:45:33
linux shouldn't need this
Sébastien Marchand
2015/06/05 18:44:42
Done.
| |
| 66 'slavebuilddir': 'chr', | |
| 67 'factory': annotator_factory.AnnotatorFactory().BaseFactory( | |
| 68 'swarming/deterministic_build', | |
| 69 factory_properties = { | |
| 70 'configuration': 'Release', | |
| 71 }), | |
| 72 'category': '4linux', | |
| 73 } | |
| 74 | |
| 75 c['builders'].append(b_linux_deterministic_build) | |
| OLD | NEW |