| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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.status.builder import FAILURE | 5 from buildbot.status.builder import FAILURE |
| 6 from master import chromium_notifier | 6 from master import chromium_notifier |
| 7 from master import master_utils | 7 from master import master_utils |
| 8 | 8 |
| 9 | 9 |
| 10 v8_steps = [ | 10 v8_steps = [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 '': v8_steps, | 39 '': v8_steps, |
| 40 } | 40 } |
| 41 | 41 |
| 42 exclusions = { | 42 exclusions = { |
| 43 'V8 Linux - swarming staging': [], | 43 'V8 Linux - swarming staging': [], |
| 44 'V8 Linux - debug - greedy allocator': [], | 44 'V8 Linux - debug - greedy allocator': [], |
| 45 'V8 Linux64 - debug - greedy allocator': [], | 45 'V8 Linux64 - debug - greedy allocator': [], |
| 46 'V8 Linux64 - cfi': [], | 46 'V8 Linux64 - cfi': [], |
| 47 'V8 Linux64 - gcov coverage': [], | 47 'V8 Linux64 - gcov coverage': [], |
| 48 'V8 Linux - predictable': [], | 48 'V8 Linux - predictable': [], |
| 49 'V8 Win64 - clang': [], | |
| 50 } | 49 } |
| 51 | 50 |
| 52 forgiving_steps = ['update_scripts', 'update', 'svnkill', 'taskkill', | 51 forgiving_steps = ['update_scripts', 'update', 'svnkill', 'taskkill', |
| 53 'gclient_revert'] | 52 'gclient_revert'] |
| 54 | 53 |
| 55 vtunejit_categories_steps = {'vtunejit': ['runhooks', 'compile']} | 54 vtunejit_categories_steps = {'vtunejit': ['runhooks', 'compile']} |
| 56 mem_sheriff_categories_steps = {'mem_sheriff': v8_steps} | 55 mem_sheriff_categories_steps = {'mem_sheriff': v8_steps} |
| 57 predictable_categories_steps = {'predictable': v8_steps} | 56 predictable_categories_steps = {'predictable': v8_steps} |
| 58 clusterfuzz_categories_steps = {'clusterfuzz': ['check clusterfuzz']} | 57 clusterfuzz_categories_steps = {'clusterfuzz': ['check clusterfuzz']} |
| 59 | 58 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 relayhost=config.Master.smtp, | 109 relayhost=config.Master.smtp, |
| 111 sendToInterestedUsers=False, | 110 sendToInterestedUsers=False, |
| 112 extraRecipients=[ | 111 extraRecipients=[ |
| 113 'v8-clusterfuzz-sheriff@chromium.org', | 112 'v8-clusterfuzz-sheriff@chromium.org', |
| 114 'machenbach@chromium.org', | 113 'machenbach@chromium.org', |
| 115 ], | 114 ], |
| 116 status_header='buildbot failure in %(project)s on %(builder)s, %(steps)s', | 115 status_header='buildbot failure in %(project)s on %(builder)s, %(steps)s', |
| 117 lookup=master_utils.FilterDomain(), | 116 lookup=master_utils.FilterDomain(), |
| 118 forgiving_steps=forgiving_steps)) | 117 forgiving_steps=forgiving_steps)) |
| 119 | 118 |
| OLD | NEW |