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 22 matching lines...) Expand all Loading... |
33 | 33 |
34 # This is the list of the builder categories and the corresponding critical | 34 # This is the list of the builder categories and the corresponding critical |
35 # steps. If one critical step fails, the blame list will be notified. | 35 # steps. If one critical step fails, the blame list will be notified. |
36 # Note: don't include 'update scripts' since we can't do much about it when | 36 # Note: don't include 'update scripts' since we can't do much about it when |
37 # it's failing and the tree is still technically fine. | 37 # it's failing and the tree is still technically fine. |
38 categories_steps = { | 38 categories_steps = { |
39 '': v8_steps, | 39 '': v8_steps, |
40 } | 40 } |
41 | 41 |
42 exclusions = { | 42 exclusions = { |
43 'V8 Linux - swarming staging builder': [], | 43 'V8 Linux - swarming staging': [], |
44 'V8 Linux - swarming staging 1': [], | |
45 'V8 Linux - swarming staging 2': [], | |
46 'V8 Linux - swarming staging 3': [], | |
47 'V8 Linux - debug - greedy allocator': [], | 44 'V8 Linux - debug - greedy allocator': [], |
48 'V8 Linux64 - debug - greedy allocator': [], | 45 'V8 Linux64 - debug - greedy allocator': [], |
49 'V8 Linux64 - cfi': [], | 46 'V8 Linux64 - cfi': [], |
50 'V8 Linux64 - gcov coverage': [], | 47 'V8 Linux64 - gcov coverage': [], |
51 'V8 Linux - ppc - sim': [], | 48 'V8 Linux - ppc - sim': [], |
52 'V8 Linux - ppc64 - sim': [], | 49 'V8 Linux - ppc64 - sim': [], |
53 'V8 Linux - mipsel - sim': [], | 50 'V8 Linux - mipsel - sim': [], |
54 'V8 Mips - big endian - nosnap - 1': [], | 51 'V8 Mips - big endian - nosnap - 1': [], |
55 'V8 Mips - big endian - nosnap - 2': [], | 52 'V8 Mips - big endian - nosnap - 2': [], |
56 'V8 Linux - x87 - nosnap - debug builder': [], | 53 'V8 Linux - x87 - nosnap - debug builder': [], |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 relayhost=config.Master.smtp, | 127 relayhost=config.Master.smtp, |
131 sendToInterestedUsers=False, | 128 sendToInterestedUsers=False, |
132 extraRecipients=[ | 129 extraRecipients=[ |
133 'v8-clusterfuzz-sheriff@chromium.org', | 130 'v8-clusterfuzz-sheriff@chromium.org', |
134 'machenbach@chromium.org', | 131 'machenbach@chromium.org', |
135 ], | 132 ], |
136 status_header='buildbot failure in %(project)s on %(builder)s, %(steps)s', | 133 status_header='buildbot failure in %(project)s on %(builder)s, %(steps)s', |
137 lookup=master_utils.FilterDomain(), | 134 lookup=master_utils.FilterDomain(), |
138 forgiving_steps=forgiving_steps)) | 135 forgiving_steps=forgiving_steps)) |
139 | 136 |
OLD | NEW |