This is an automated email from the ASF dual-hosted git repository.

davidarthur pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new a334b1b6fda MINOR Fix build scan artifact name in ci-complete (#17863)
a334b1b6fda is described below

commit a334b1b6fda8a12a2df2a1ec722a194f868106cb
Author: David Arthur <[email protected]>
AuthorDate: Tue Nov 19 09:48:37 2024 -0500

    MINOR Fix build scan artifact name in ci-complete (#17863)
    
    Reviewers: Chia-Ping Tsai <[email protected]>
---
 .github/scripts/junit.py          | 5 ++---
 .github/workflows/ci-complete.yml | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/.github/scripts/junit.py b/.github/scripts/junit.py
index 2c7092e9145..d234a902605 100644
--- a/.github/scripts/junit.py
+++ b/.github/scripts/junit.py
@@ -337,7 +337,7 @@ if __name__ == "__main__":
         report_md = "No report available. JUNIT_REPORT_URL was missing."
     summary = (f"{total_run} tests cases run in {duration}.\n\n"
                f"{total_success} {PASSED}, {total_failures} {FAILED}, "
-               f"{total_flaky} {FLAKY}, {total_skipped} {SKIPPED}, 
{len(quarantined_table)} {QUARANTINED}, and {total_errors} errors.<br/>")
+               f"{total_flaky} {FLAKY}, {total_skipped} {SKIPPED}, 
{len(quarantined_table)} {QUARANTINED}, and {total_errors} errors.")
     print("## Test Summary\n")
     print(f"{summary}\n\n{report_md}\n")
 
@@ -398,8 +398,7 @@ if __name__ == "__main__":
         print("\n</details>")
         logger.debug("::endgroup::")
 
-    # Create a horizontal rule
-    print("-"*80)
+    print("<hr/>")
 
     # Print special message if there was a timeout
     exit_code = get_env("GRADLE_EXIT_CODE", int)
diff --git a/.github/workflows/ci-complete.yml 
b/.github/workflows/ci-complete.yml
index cc5188c1f78..25c96ac2d74 100644
--- a/.github/workflows/ci-complete.yml
+++ b/.github/workflows/ci-complete.yml
@@ -67,7 +67,7 @@ jobs:
         with:
           github-token: ${{ github.token }}
           run-id: ${{ github.event.workflow_run.id }}
-          name: ${{ matrix.artifact-prefix }}-${{ matrix.java }}
+          name: ${{ matrix.artifact-prefix }}${{ matrix.java }}
           path: ~/.gradle/build-scan-data  # This is where Gradle buffers 
unpublished build scan data when --no-scan is given
       - name: Handle missing scan
         if: ${{ steps.download-build-scan.outcome == 'failure' }}

Reply via email to