[llvm] [CI] Add Initial Wiring for Premerge Advisor Explanations (PR #164132)
Corentin Jabot via llvm-commits
llvm-commits at lists.llvm.org
Sun Oct 19 03:21:42 PDT 2025
================
@@ -0,0 +1,60 @@
+# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+# See https://llvm.org/LICENSE.txt for license information.
+# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+"""Script for getting explanations from the premerge advisor."""
+
+import argparse
+import os
+import platform
+import sys
+
+import requests
+
+import generate_test_report_lib
+
+PREMERGE_ADVISOR_URL = (
+ "http://premerge-advisor.premerge-advisor.svc.cluster.local:5000/explain"
+)
----------------
cor3ntin wrote:
.local?
https://github.com/llvm/llvm-project/pull/164132
More information about the llvm-commits
mailing list