OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 | 3 |
4 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
7 | 7 |
8 # This is the buildmaster config file for the 'chromium' bot. It must | 8 # This is the buildmaster config file for the 'chromium' bot. It must |
9 # be installed as 'master.cfg' in your buildmaster's base directory | 9 # be installed as 'master.cfg' in your buildmaster's base directory |
10 # (although the filename can be changed with the --basedir option to | 10 # (although the filename can be changed with the --basedir option to |
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 exclusions = {} | 464 exclusions = {} |
465 forgiving_steps = ['update scripts', 'update', 'svnkill', 'taskkill', | 465 forgiving_steps = ['update scripts', 'update', 'svnkill', 'taskkill', |
466 'archived build'] | 466 'archived build'] |
467 c['status'].append(gatekeeper.GateKeeper( | 467 c['status'].append(gatekeeper.GateKeeper( |
468 fromaddr=ActiveMaster.from_address, | 468 fromaddr=ActiveMaster.from_address, |
469 categories_steps=categories_steps, | 469 categories_steps=categories_steps, |
470 exclusions=exclusions, | 470 exclusions=exclusions, |
471 relayhost=config.Master.smtp, | 471 relayhost=config.Master.smtp, |
472 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 472 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
473 'revision %(revision)s', | 473 'revision %(revision)s', |
474 extraRecipients=tuple(ActiveMaster.tree_closing_notification_recipients), | 474 extraRecipients=ActiveMaster.tree_closing_notification_recipients, |
475 tree_status_url=ActiveMaster.tree_status_url, | 475 tree_status_url=ActiveMaster.tree_status_url, |
476 lookup='google.com', | 476 lookup='google.com', |
477 forgiving_steps=forgiving_steps)) | 477 forgiving_steps=forgiving_steps)) |
478 | 478 |
479 if GOOD_REVISIONS: | 479 if GOOD_REVISIONS: |
480 import goodrevisions | 480 import goodrevisions |
481 # This is the list of builders with their respective list of critical steps | 481 # This is the list of builders with their respective list of critical steps |
482 # that all need to succeed to mark a revision as successful. A single failure | 482 # that all need to succeed to mark a revision as successful. A single failure |
483 # in any of the steps of any of the builders will mark the revision as failed. | 483 # in any of the steps of any of the builders will mark the revision as failed. |
484 good_revision_steps = { | 484 good_revision_steps = { |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 c['projectURL'] = config.Master.project_url | 529 c['projectURL'] = config.Master.project_url |
530 | 530 |
531 # the 'buildbotURL' string should point to the location where the buildbot's | 531 # the 'buildbotURL' string should point to the location where the buildbot's |
532 # internal web server (usually the html.Waterfall page) is visible. This | 532 # internal web server (usually the html.Waterfall page) is visible. This |
533 # typically uses the port number set in the Waterfall 'status' entry, but | 533 # typically uses the port number set in the Waterfall 'status' entry, but |
534 # with an externally-visible host name which the buildbot cannot figure out | 534 # with an externally-visible host name which the buildbot cannot figure out |
535 # without some help. | 535 # without some help. |
536 | 536 |
537 c['buildbotURL'] = 'http://build.chromium.org/buildbot/o3d/' | 537 c['buildbotURL'] = 'http://build.chromium.org/buildbot/o3d/' |
538 | 538 |
OLD | NEW |