MCPcopy Index your code
hub / github.com/apache/tvm / run

Method run

ci/scripts/github/github_tvmbot.py:691–706  ·  view source on GitHub ↗
(pr: PR)

Source from the content-addressed store, hash-verified

689
690 @staticmethod
691 def run(pr: PR):
692 errors = []
693 try:
694 pr.rerun_jenkins_ci()
695 except Exception as e:
696 logging.exception(e)
697 errors.append(e)
698
699 try:
700 pr.rerun_github_actions()
701 except Exception as e:
702 logging.exception(e)
703 errors.append(e)
704
705 if len(errors) > 0:
706 pr.comment_failure("Failed to re-run CI", errors)
707
708
709if __name__ == "__main__":

Callers

nothing calls this directly

Calls 4

rerun_jenkins_ciMethod · 0.80
rerun_github_actionsMethod · 0.80
comment_failureMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected