[llvm] [CI] Add Initial Wiring for Premerge Advisor Explanations (PR #164132)

Aiden Grossman via llvm-commits llvm-commits at lists.llvm.org
Sun Oct 19 12:09:22 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"
+)
----------------
boomanaiden154 wrote:

This is a cluster local k8s service. This is the standard domain style for the automatically constructed DNS entries for normal k8s services.

https://github.com/llvm/llvm-project/pull/164132


More information about the llvm-commits mailing list