From 7db7c82263461353cedb5d97965bbe74325d9a2b Mon Sep 17 00:00:00 2001 From: pifopi Date: Mon, 26 Jan 2026 00:09:12 +0100 Subject: [PATCH] Fix CI --- .github/workflows/cpp-ci-serial-programs-base.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/cpp-ci-serial-programs-base.yml b/.github/workflows/cpp-ci-serial-programs-base.yml index 2bbd11a484..15fe11c843 100644 --- a/.github/workflows/cpp-ci-serial-programs-base.yml +++ b/.github/workflows/cpp-ci-serial-programs-base.yml @@ -39,7 +39,7 @@ jobs: fi echo "CMAKE_ADDITIONAL_FLAGS=$CMAKE_ADDITIONAL_FLAGS" >> $GITHUB_ENV - if [[ "${{inputs.os}}" == "windows*" ]]; then + if [[ "${{inputs.os}}" == windows* ]]; then UPLOAD_FOLDER="Arduino-Source/SerialPrograms/bin/RelWithDebInfo" else UPLOAD_FOLDER="Arduino-Source/SerialPrograms/bin" @@ -112,7 +112,6 @@ jobs: if: startsWith(inputs.os, 'windows') && inputs.run-tests run: | cd Arduino-Source/SerialPrograms/bin - $env:DISCORD_BOT_TOKEN = "Value" $process = Start-Process -FilePath "./RelWithDebInfo/SerialPrograms.exe" ` -ArgumentList "--command-line-test-mode --command-line-test-folder ../../../CommandLineTests" ` -NoNewWindow -Wait -PassThru