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.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 20 matching lines...) Expand all Loading... | |
| 31 def Update(_config, active_master, c): | 31 def Update(_config, active_master, c): |
| 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)', |
|
Paweł Hajdan Jr.
2016/11/14 09:41:34
Could you also add Trusty one for Blimp?
I'd be f
Yoshisato Yanagisawa
2016/11/15 04:00:45
Since it is actually trusty, we do not need to do
| |
| 42 # Trusty | |
| 43 'Linux Builder Trusty', | |
| 44 'Linux Builder Trusty (dbg)(32)', | |
| 45 'Linux Builder Trusty (dbg)', | |
| 46 'Cast Linux Trusty', | |
| 42 ]), | 47 ]), |
| 43 ]) | 48 ]) |
| 44 specs = [ | 49 specs = [ |
| 45 {'name': 'Linux Builder'}, | 50 {'name': 'Linux Builder'}, |
| 46 {'name': 'Linux Tests'}, | 51 {'name': 'Linux Tests'}, |
| 47 {'name': 'Linux Builder (dbg)(32)'}, | 52 {'name': 'Linux Builder (dbg)(32)'}, |
| 48 {'name': 'Linux Tests (dbg)(1)(32)'}, | 53 {'name': 'Linux Tests (dbg)(1)(32)'}, |
| 49 {'name': 'Linux Builder (dbg)'}, | 54 {'name': 'Linux Builder (dbg)'}, |
| 50 {'name': 'Linux Tests (dbg)(1)'}, | 55 {'name': 'Linux Tests (dbg)(1)'}, |
| 51 {'name': 'Cast Linux'}, | 56 {'name': 'Cast Linux'}, |
| 52 {'name': 'Blimp Linux (dbg)'}, | 57 {'name': 'Blimp Linux (dbg)'}, |
| 58 # Trusty | |
| 59 {'name': 'Linux Builder Trusty'}, | |
| 60 {'name': 'Linux Tests Trusty'}, | |
| 61 {'name': 'Linux Tests Trusty (dbg)(1)(32)'}, | |
| 62 {'name': 'Linux Builder Trusty (dbg)'}, | |
| 63 {'name': 'Linux Builder Trusty (dbg)(32)'}, | |
| 64 {'name': 'Linux Tests Trusty (dbg)(1)'}, | |
| 65 {'name': 'Cast Linux Trusty'}, | |
| 53 ] | 66 ] |
| 54 | 67 |
| 55 c['builders'].extend([ | 68 c['builders'].extend([ |
| 56 { | 69 { |
| 57 'name': spec['name'], | 70 'name': spec['name'], |
| 58 'factory': m_remote_run_chromium_src('chromium'), | 71 'factory': m_remote_run_chromium_src('chromium'), |
| 59 'notify_on_missing': True, | 72 'notify_on_missing': True, |
| 60 'category': '4linux', | 73 'category': '4linux', |
| 61 } for spec in specs | 74 } for spec in specs |
| 62 ]) | 75 ]) |
| OLD | NEW |