From 9ab850dd5dc2aa151eb18a621cbccb014f5f4aa0 Mon Sep 17 00:00:00 2001 From: Blessio <24902257+blessio@users.noreply.github.com> Date: Sun, 5 Jan 2025 22:46:12 +0100 Subject: [PATCH] RGB Lights --- .github/workflows/bld-test-upload.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bld-test-upload.yml b/.github/workflows/bld-test-upload.yml index 4eb44f3fe4..dc42db3ae9 100644 --- a/.github/workflows/bld-test-upload.yml +++ b/.github/workflows/bld-test-upload.yml @@ -318,15 +318,18 @@ jobs: echo "### ${{ steps.strings.outputs.bld-humanreadable-str }}" >> $GITHUB_STEP_SUMMARY echo " - download from: ${{ steps.a-wexecutables.outputs.artifact-url }} ${{ steps.a-executables.outputs.artifact-url }}" >> $GITHUB_STEP_SUMMARY if [ -f ctest-pass2-results-of-failedonly.txt ]; then - echo -e " - \u26A0 x Some tests **failed**. " >> $GITHUB_STEP_SUMMARY - echo " Download the test results to check why. Look into \`ctest-pass2-results-of-failedonly.txt\` file in the Result logs, which " >> $GITHUB_STEP_SUMMARY + echo -e " - 🟡 Some tests **failed**. " >> $GITHUB_STEP_SUMMARY + echo " Download the test results to check why. Look into \`ctest-pass2-results-of-failedonly.txt\` file in result logs, which " >> $GITHUB_STEP_SUMMARY else - echo -e " - \u2705 ✅ All tests **passed**. Result logs " >> $GITHUB_STEP_SUMMARY + echo -e " - 🟢 All tests **passed**.\n Result logs " >> $GITHUB_STEP_SUMMARY fi - echo -e " are here: \n ${{ steps.a-TestLog.outputs.artifact-url }}" >> $GITHUB_STEP_SUMMARY + echo -e "are here: ${{ steps.a-TestLog.outputs.artifact-url }}." >> $GITHUB_STEP_SUMMARY # - `\u26A0` represents the warning emoji ⚠️. # - `\u2705` represents the check mark emoji ✅. # - `\u274C` represents the cross mark emoji `❌`. + # - 🟢 represents a green circle. + # - 🟡 represents a yellow circle. + # - 🔴 represents a red circle.