RCS file: /cvsroot/mozilla/tools/buildbot/buildbot/status/tinderbox.py,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 tinderbox.py
|
|
|
|
| 98 | 98 | self.logCompression = logCompression |
| 99 | 99 | |
| 100 | 100 | def buildStarted(self, name, build): |
| | 101 | builder = build.getBuilder() |
| | 102 | if self.builders is not None and name not in self.builders: |
| | 103 | return # ignore this Build |
| | 104 | if self.categories is not None and \ |
| | 105 | builder.category not in self.categories: |
| | 106 | return # ignore this build |
| 101 | 107 | self.buildMessage(name, build, "building") |
| 102 | 108 | |
| 103 | 109 | def buildMessage(self, name, build, results): |