| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 exclusions = { | 42 exclusions = { |
| 43 'V8 Arm': [], | 43 'V8 Arm': [], |
| 44 'V8 Arm - debug': [], | 44 'V8 Arm - debug': [], |
| 45 'V8 Arm GC Stress': [], | 45 'V8 Arm GC Stress': [], |
| 46 'V8 Linux - swarming staging': [], | 46 'V8 Linux - swarming staging': [], |
| 47 'V8 Linux - debug - greedy allocator': [], | 47 'V8 Linux - debug - greedy allocator': [], |
| 48 'V8 Linux64 - debug - greedy allocator': [], | 48 'V8 Linux64 - debug - greedy allocator': [], |
| 49 'V8 Linux64 - cfi': [], | 49 'V8 Linux64 - cfi': [], |
| 50 'V8 Linux64 - gcov coverage': [], | 50 'V8 Linux64 - gcov coverage': [], |
| 51 'V8 Linux - predictable': [], | 51 'V8 Linux - predictable': [], |
| 52 'V8 Win64 - clang': [], |
| 52 } | 53 } |
| 53 | 54 |
| 54 forgiving_steps = ['update_scripts', 'update', 'svnkill', 'taskkill', | 55 forgiving_steps = ['update_scripts', 'update', 'svnkill', 'taskkill', |
| 55 'gclient_revert'] | 56 'gclient_revert'] |
| 56 | 57 |
| 57 vtunejit_categories_steps = {'vtunejit': ['runhooks', 'compile']} | 58 vtunejit_categories_steps = {'vtunejit': ['runhooks', 'compile']} |
| 58 mem_sheriff_categories_steps = {'mem_sheriff': v8_steps} | 59 mem_sheriff_categories_steps = {'mem_sheriff': v8_steps} |
| 59 predictable_categories_steps = {'predictable': v8_steps} | 60 predictable_categories_steps = {'predictable': v8_steps} |
| 60 clusterfuzz_categories_steps = {'clusterfuzz': ['check clusterfuzz']} | 61 clusterfuzz_categories_steps = {'clusterfuzz': ['check clusterfuzz']} |
| 61 | 62 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 relayhost=config.Master.smtp, | 113 relayhost=config.Master.smtp, |
| 113 sendToInterestedUsers=False, | 114 sendToInterestedUsers=False, |
| 114 extraRecipients=[ | 115 extraRecipients=[ |
| 115 'v8-clusterfuzz-sheriff@chromium.org', | 116 'v8-clusterfuzz-sheriff@chromium.org', |
| 116 'machenbach@chromium.org', | 117 'machenbach@chromium.org', |
| 117 ], | 118 ], |
| 118 status_header='buildbot failure in %(project)s on %(builder)s, %(steps)s', | 119 status_header='buildbot failure in %(project)s on %(builder)s, %(steps)s', |
| 119 lookup=master_utils.FilterDomain(), | 120 lookup=master_utils.FilterDomain(), |
| 120 forgiving_steps=forgiving_steps)) | 121 forgiving_steps=forgiving_steps)) |
| 121 | 122 |
| OLD | NEW |