| 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.process.properties import WithProperties | 5 from buildbot.process.properties import WithProperties |
| 6 from buildbot.scheduler import Triggerable | 6 from buildbot.scheduler import Triggerable |
| 7 from buildbot.schedulers.basic import SingleBranchScheduler | 7 from buildbot.schedulers.basic import SingleBranchScheduler |
| 8 | 8 |
| 9 from master import master_utils | 9 from master import master_utils |
| 10 from master.factory import remote_run_factory | 10 from master.factory import remote_run_factory |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 c['schedulers'].extend([ | 32 c['schedulers'].extend([ |
| 33 SingleBranchScheduler(name='linux_src', | 33 SingleBranchScheduler(name='linux_src', |
| 34 branch='master', | 34 branch='master', |
| 35 treeStableTimer=60, | 35 treeStableTimer=60, |
| 36 builderNames=[ | 36 builderNames=[ |
| 37 'Linux Builder', | 37 'Linux Builder', |
| 38 'Linux Builder (dbg)(32)', | 38 'Linux Builder (dbg)(32)', |
| 39 'Linux Builder (dbg)', | 39 'Linux Builder (dbg)', |
| 40 'Cast Linux', | 40 'Cast Linux', |
| 41 'Blimp Linux (dbg)', | 41 'Blimp Linux (dbg)', |
| 42 # Trusty |
| 43 # TODO(yyanagisawa): rename Blimp Linux to Blimp Linux Trusty? |
| 44 # This change adds builders for trusty but Blimp is already using |
| 45 # trusty. |
| 46 'Linux Builder Trusty', |
| 47 'Linux Builder Trusty (dbg)(32)', |
| 48 'Linux Builder Trusty (dbg)', |
| 49 'Cast Linux Trusty', |
| 42 ]), | 50 ]), |
| 43 ]) | 51 ]) |
| 44 specs = [ | 52 specs = [ |
| 45 {'name': 'Linux Builder'}, | 53 {'name': 'Linux Builder'}, |
| 46 {'name': 'Linux Tests'}, | 54 {'name': 'Linux Tests'}, |
| 47 {'name': 'Linux Builder (dbg)(32)'}, | 55 {'name': 'Linux Builder (dbg)(32)'}, |
| 48 {'name': 'Linux Tests (dbg)(1)(32)'}, | 56 {'name': 'Linux Tests (dbg)(1)(32)'}, |
| 49 {'name': 'Linux Builder (dbg)'}, | 57 {'name': 'Linux Builder (dbg)'}, |
| 50 {'name': 'Linux Tests (dbg)(1)'}, | 58 {'name': 'Linux Tests (dbg)(1)'}, |
| 51 {'name': 'Cast Linux'}, | 59 {'name': 'Cast Linux'}, |
| 52 {'name': 'Blimp Linux (dbg)'}, | 60 {'name': 'Blimp Linux (dbg)'}, |
| 61 # Trusty |
| 62 {'name': 'Linux Builder Trusty'}, |
| 63 {'name': 'Linux Tests Trusty'}, |
| 64 {'name': 'Linux Tests Trusty (dbg)(1)(32)'}, |
| 65 {'name': 'Linux Builder Trusty (dbg)'}, |
| 66 {'name': 'Linux Builder Trusty (dbg)(32)'}, |
| 67 {'name': 'Linux Tests Trusty (dbg)(1)'}, |
| 68 {'name': 'Cast Linux Trusty'}, |
| 53 ] | 69 ] |
| 54 | 70 |
| 55 c['builders'].extend([ | 71 c['builders'].extend([ |
| 56 { | 72 { |
| 57 'name': spec['name'], | 73 'name': spec['name'], |
| 58 'factory': m_remote_run_chromium_src('chromium'), | 74 'factory': m_remote_run_chromium_src('chromium'), |
| 59 'notify_on_missing': True, | 75 'notify_on_missing': True, |
| 60 'category': '4linux', | 76 'category': '4linux', |
| 61 } for spec in specs | 77 } for spec in specs |
| 62 ]) | 78 ]) |
| OLD | NEW |