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 'chromeos' bot. It must | 8 # This is the buildmaster config file for the 'chromeos' 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 exclusions = {} | 257 exclusions = {} |
258 forgiving_steps = ['update scripts', 'update', 'svnkill', 'taskkill', | 258 forgiving_steps = ['update scripts', 'update', 'svnkill', 'taskkill', |
259 'archived build'] | 259 'archived build'] |
260 c['status'].append(gatekeeper.GateKeeper( | 260 c['status'].append(gatekeeper.GateKeeper( |
261 fromaddr=ActiveMaster.from_address, | 261 fromaddr=ActiveMaster.from_address, |
262 categories_steps=categories_steps, | 262 categories_steps=categories_steps, |
263 exclusions=exclusions, | 263 exclusions=exclusions, |
264 relayhost=config.Master.smtp, | 264 relayhost=config.Master.smtp, |
265 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' | 265 subject='buildbot %(result)s in %(projectName)s on %(builder)s, ' |
266 'revision %(revision)s', | 266 'revision %(revision)s', |
267 extraRecipients=tuple(ActiveMaster.tree_closing_notification_recipients), | 267 extraRecipients=ActiveMaster.tree_closing_notification_recipients, |
268 lookup='google.com', | 268 lookup='google.com', |
269 forgiving_steps=forgiving_steps, | 269 forgiving_steps=forgiving_steps, |
270 tree_status_url=ActiveMaster.tree_status_url)) | 270 tree_status_url=ActiveMaster.tree_status_url)) |
271 | 271 |
272 if GOOD_REVISIONS: | 272 if GOOD_REVISIONS: |
273 # TODO: update for ChromeOS | 273 # TODO: update for ChromeOS |
274 import goodrevisions | 274 import goodrevisions |
275 # This is the list of builders with their respective list of critical steps | 275 # This is the list of builders with their respective list of critical steps |
276 # that all need to succeed to mark a revision as successful. A single failure | 276 # that all need to succeed to mark a revision as successful. A single failure |
277 # in any of the steps of any of the builders will mark the revision as failed. | 277 # in any of the steps of any of the builders will mark the revision as failed. |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 c['projectURL'] = config.Master.project_url | 324 c['projectURL'] = config.Master.project_url |
325 | 325 |
326 # the 'buildbotURL' string should point to the location where the buildbot's | 326 # the 'buildbotURL' string should point to the location where the buildbot's |
327 # internal web server (usually the html.Waterfall page) is visible. This | 327 # internal web server (usually the html.Waterfall page) is visible. This |
328 # typically uses the port number set in the Waterfall 'status' entry, but | 328 # typically uses the port number set in the Waterfall 'status' entry, but |
329 # with an externally-visible host name which the buildbot cannot figure out | 329 # with an externally-visible host name which the buildbot cannot figure out |
330 # without some help. | 330 # without some help. |
331 | 331 |
332 # TODO: update me! | 332 # TODO: update me! |
333 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' | 333 c['buildbotURL'] = 'http://build.chromium.org/buildbot/waterfall/' |
OLD | NEW |