[llvm] [CI] Send Platform Along with Failure Information (PR #163817)

via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 16 09:19:54 PDT 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {darker}-->


:warning: Python code formatter, darker found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
darker --check --diff -r origin/main...HEAD .ci/premerge_advisor_upload.py
``````````

:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:

</details>

<details>
<summary>
View the diff from darker here.
</summary>

``````````diff
--- premerge_advisor_upload.py	2025-10-16 16:16:29.000000 +0000
+++ premerge_advisor_upload.py	2025-10-16 16:19:23.551249 +0000
@@ -27,11 +27,11 @@
     failure_info = {
         "source_type": source,
         "base_commit_sha": commit_sha,
         "source_id": workflow_run_number,
         "failures": [],
-        "platform": current_platform
+        "platform": current_platform,
     }
     if test_failures:
         for name, failure_message in test_failures:
             failure_info["failures"].append({"name": name, "message": failure_message})
     else:

``````````

</details>


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


More information about the llvm-commits mailing list