| OLD | NEW |
| 1 # vim: ft=python: | 1 # vim: ft=python: |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 from buildbot.changes.filter import ChangeFilter | 6 from buildbot.changes.filter import ChangeFilter |
| 7 from buildbot.process.properties import WithProperties | 7 from buildbot.process.properties import WithProperties |
| 8 from buildbot.scheduler import Dependent | 8 from buildbot.scheduler import Dependent |
| 9 from buildbot.scheduler import Nightly | 9 from buildbot.scheduler import Nightly |
| 10 from buildbot.scheduler import Periodic | 10 from buildbot.scheduler import Periodic |
| (...skipping 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1468 b_linux_deterministic_dbg_build, | 1468 b_linux_deterministic_dbg_build, |
| 1469 b_mac_deterministic_dbg_build, | 1469 b_mac_deterministic_dbg_build, |
| 1470 | 1470 |
| 1471 # Chromium DevTools | 1471 # Chromium DevTools |
| 1472 b_chromium_devtools_linux, | 1472 b_chromium_devtools_linux, |
| 1473 ] | 1473 ] |
| 1474 | 1474 |
| 1475 c['builders'].extend([ | 1475 c['builders'].extend([ |
| 1476 { | 1476 { |
| 1477 'name': 'Linux remote_run Builder', | 1477 'name': 'Linux remote_run Builder', |
| 1478 'factory': m_remote_run_chromium_src( | 1478 'factory': m_remote_run('chromium', timeout=2400, max_time=10800), |
| 1479 'chromium', timeout=2400, max_time=10800), | |
| 1480 'category': 'remote_run', | 1479 'category': 'remote_run', |
| 1481 'auto_reboot': True, | 1480 'auto_reboot': True, |
| 1482 }, | 1481 }, |
| 1483 { | 1482 { |
| 1484 'name': 'Linux remote_run Tester', | 1483 'name': 'Linux remote_run Tester', |
| 1485 'factory': m_remote_run_chromium_src('chromium'), | 1484 'factory': m_remote_run('chromium'), |
| 1486 'category': 'remote_run', | 1485 'category': 'remote_run', |
| 1487 'auto_reboot': True, | 1486 'auto_reboot': True, |
| 1488 }, | 1487 }, |
| 1489 ]) | 1488 ]) |
| 1490 | 1489 |
| 1491 # Associate the slaves to the manual builders. The configuration is in | 1490 # Associate the slaves to the manual builders. The configuration is in |
| 1492 # slaves.cfg. | 1491 # slaves.cfg. |
| 1493 slaves = slaves_list.SlavesList('slaves.cfg', 'ChromiumFYI') | 1492 slaves = slaves_list.SlavesList('slaves.cfg', 'ChromiumFYI') |
| 1494 for builder in c['builders']: | 1493 for builder in c['builders']: |
| 1495 builder['slavenames'] = slaves.GetSlavesName(builder=builder['name']) | 1494 builder['slavenames'] = slaves.GetSlavesName(builder=builder['name']) |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1555 ])) | 1554 ])) |
| 1556 | 1555 |
| 1557 c['status'].append(MailNotifier( | 1556 c['status'].append(MailNotifier( |
| 1558 fromaddr=ActiveMaster.from_address, # Reply-To address | 1557 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1559 mode='failing', | 1558 mode='failing', |
| 1560 relayhost=config.Master.smtp, | 1559 relayhost=config.Master.smtp, |
| 1561 subject='Build failure on %(builder)s', | 1560 subject='Build failure on %(builder)s', |
| 1562 extraRecipients=['sbc@chromium.org'], | 1561 extraRecipients=['sbc@chromium.org'], |
| 1563 sendToInterestedUsers=False, | 1562 sendToInterestedUsers=False, |
| 1564 builders=['Linux ARM'])) | 1563 builders=['Linux ARM'])) |
| OLD | NEW |