OLD | NEW |
1 # -*- python -*- | 1 # -*- python -*- |
2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
3 | 3 |
4 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2006-2008 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 'nacl' bot. It must | 8 # This is the buildmaster config file for the 'nacl' 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 exclusions = { } | 372 exclusions = { } |
373 forgiving_steps = ['update scripts', 'update', 'svnkill', 'taskkill', | 373 forgiving_steps = ['update scripts', 'update', 'svnkill', 'taskkill', |
374 'archived build'] | 374 'archived build'] |
375 c['status'].append(gatekeeper.GateKeeper( | 375 c['status'].append(gatekeeper.GateKeeper( |
376 fromaddr=ActiveMaster.from_address, | 376 fromaddr=ActiveMaster.from_address, |
377 categories_steps=categories_steps, | 377 categories_steps=categories_steps, |
378 exclusions=exclusions, | 378 exclusions=exclusions, |
379 relayhost=config.Master.smtp, | 379 relayhost=config.Master.smtp, |
380 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 380 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
381 'revision %(revision)s', | 381 'revision %(revision)s', |
382 extraRecipients=tuple(ActiveMaster.tree_closing_notification_recipients), | 382 extraRecipients=ActiveMaster.tree_closing_notification_recipients, |
383 tree_status_url=ActiveMaster.tree_status_url, | 383 tree_status_url=ActiveMaster.tree_status_url, |
384 lookup='google.com', | 384 lookup='google.com', |
385 forgiving_steps=forgiving_steps)) | 385 forgiving_steps=forgiving_steps)) |
386 | 386 |
387 if GOOD_REVISIONS: | 387 if GOOD_REVISIONS: |
388 import goodrevisions | 388 import goodrevisions |
389 # This is the list of builders with their respective list of critical steps | 389 # This is the list of builders with their respective list of critical steps |
390 # that all need to succeed to mark a revision as successful. A single failure | 390 # that all need to succeed to mark a revision as successful. A single failure |
391 # in any of the steps of any of the builders will mark the revision as failed. | 391 # in any of the steps of any of the builders will mark the revision as failed. |
392 all_steps = [ | 392 all_steps = [ |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 c['projectURL'] = config.Master.project_url | 432 c['projectURL'] = config.Master.project_url |
433 | 433 |
434 # the 'buildbotURL' string should point to the location where the buildbot's | 434 # the 'buildbotURL' string should point to the location where the buildbot's |
435 # internal web server (usually the html.Waterfall page) is visible. This | 435 # internal web server (usually the html.Waterfall page) is visible. This |
436 # typically uses the port number set in the Waterfall 'status' entry, but | 436 # typically uses the port number set in the Waterfall 'status' entry, but |
437 # with an externally-visible host name which the buildbot cannot figure out | 437 # with an externally-visible host name which the buildbot cannot figure out |
438 # without some help. | 438 # without some help. |
439 | 439 |
440 c['buildbotURL'] = 'http://build.chromium.org:8025/buildbot/waterfall/' | 440 c['buildbotURL'] = 'http://build.chromium.org:8025/buildbot/waterfall/' |
441 | 441 |
OLD | NEW |