[llvm] [ci] Use different emoji for Linux Windows job titles on GitHub (PR #142101)

David Spickett via llvm-commits llvm-commits at lists.llvm.org
Fri May 30 01:00:39 PDT 2025


https://github.com/DavidSpickett created https://github.com/llvm/llvm-project/pull/142101

Buildkite has a bunch of custom emoji that include Linux and Windows logos - https://github.com/buildkite/emojis?tab=readme-ov-file#smileys--emotion.

GitHub doesn't have these so let's just use a penguin and a generic window.

These are standard emoji so Buildkite does support them too, but there's no motivation to change it there.

Plus, I think the metrics collection might be tied to Buildkite pipeline name so keeping it the same saves hassle there.

>From c87282f855db3a5d18cfa44b2dc30a2116757930 Mon Sep 17 00:00:00 2001
From: David Spickett <david.spickett at linaro.org>
Date: Fri, 30 May 2025 07:55:52 +0000
Subject: [PATCH] [ci] Use different emoji for Linux Windows job titles on
 GitHub

Buildkite has a bunch of custom emoji that include
Linux and Windows logos - https://github.com/buildkite/emojis?tab=readme-ov-file#smileys--emotion.

GitHub doesn't have these so let's just use a penguin
and a generic window.

These are standard emoji so Buildkite does support
them too, but there's no motivation to change it there.

Plus, I think the metrics collection might be tied to Buildkite
pipeline name so keeping it the same saves hassle there.
---
 .ci/monolithic-linux.sh   | 2 +-
 .ci/monolithic-windows.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.ci/monolithic-linux.sh b/.ci/monolithic-linux.sh
index a0ce8f3b80f1e..f5a31fa45a641 100755
--- a/.ci/monolithic-linux.sh
+++ b/.ci/monolithic-linux.sh
@@ -47,7 +47,7 @@ function at-exit {
     python3 "${MONOREPO_ROOT}"/.ci/generate_test_report_buildkite.py ":linux: Linux x64 Test Results" \
       "linux-x64-test-results" $retcode "${BUILD_DIR}"/test-results.*.xml
   else
-    python3 "${MONOREPO_ROOT}"/.ci/generate_test_report_github.py ":linux: Linux x64 Test Results" \
+    python3 "${MONOREPO_ROOT}"/.ci/generate_test_report_github.py ":penguin: Linux x64 Test Results" \
       $retcode "${BUILD_DIR}"/test-results.*.xml >> $GITHUB_STEP_SUMMARY
   fi
 }
diff --git a/.ci/monolithic-windows.sh b/.ci/monolithic-windows.sh
index 8dc49aa158192..a0997420b0d3f 100755
--- a/.ci/monolithic-windows.sh
+++ b/.ci/monolithic-windows.sh
@@ -42,7 +42,7 @@ function at-exit {
     python "${MONOREPO_ROOT}"/.ci/generate_test_report_buildkite.py ":windows: Windows x64 Test Results" \
       "windows-x64-test-results" $retcode "${BUILD_DIR}"/test-results.*.xml
   else
-    python "${MONOREPO_ROOT}"/.ci/generate_test_report_github.py ":windows: Windows x64 Test Results" \
+    python "${MONOREPO_ROOT}"/.ci/generate_test_report_github.py ":window: Windows x64 Test Results" \
       $retcode "${BUILD_DIR}"/test-results.*.xml >> $GITHUB_STEP_SUMMARY
   fi
 }



More information about the llvm-commits mailing list