Home | History | Annotate | Download | only in commands

Lines Matching refs:patch

43     def should_proceed_with_work_item(self, patch):
60 def _build(self, patch, first_run=False):
70 patch.id()]
82 def review_patch(self, patch):
83 if patch.is_obsolete():
84 self._did_error(patch, "%s does not process obsolete patches." % self.name)
87 if patch.bug().is_closed():
88 self._did_error(patch, "%s does not process patches on closed bugs." % self.name)
91 if not self._build(patch, first_run=True):
94 self._build(patch)
104 message = "Attachment %s did not build on %s:\nBuild output: %s" % (state["patch"].id(), cls.port_name, results_link)
105 tool.bugs.post_comment_to_bug(state["patch"].bug_id(), message, cc=cls.watchers)
166 def process_work_item(self, patch):
167 if not self._committers.committer_by_email(patch.attacher_email()):
168 self._did_error(patch, "%s cannot process patches from non-committers :(" % self.name)
170 return AbstractEarlyWarningSystem.process_work_item(self, patch)