From a4fb227b06d44ede1db8bc98bd23295eaa96a99a Mon Sep 17 00:00:00 2001 From: me-no-dev Date: Fri, 2 Aug 2024 12:36:09 +0300 Subject: [PATCH] fix(release): Use correct FQBN for release test --- .github/scripts/on-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/scripts/on-release.sh b/.github/scripts/on-release.sh index 1988d259207..eb8f2be7b81 100755 --- a/.github/scripts/on-release.sh +++ b/.github/scripts/on-release.sh @@ -437,7 +437,7 @@ arduino-cli core install esp32:esp32 if [ $? -ne 0 ]; then echo "ERROR: Failed to install esp32 ($?)"; exit 1; fi echo "Compiling example ..." -arduino-cli compile --fqbn espressif:esp32:esp32 $GITHUB_WORKSPACE/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino +arduino-cli compile --fqbn esp32:esp32:esp32 $GITHUB_WORKSPACE/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino if [ $? -ne 0 ]; then echo "ERROR: Failed to compile example ($?)"; exit 1; fi echo "Uninstalling esp32 ..." @@ -457,7 +457,7 @@ if [ "$RELEASE_PRE" == "false" ]; then if [ $? -ne 0 ]; then echo "ERROR: Failed to install esp32 ($?)"; exit 1; fi echo "Compiling example ..." - arduino-cli compile --fqbn espressif:esp32:esp32 $GITHUB_WORKSPACE/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino + arduino-cli compile --fqbn esp32:esp32:esp32 $GITHUB_WORKSPACE/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino if [ $? -ne 0 ]; then echo "ERROR: Failed to compile example ($?)"; exit 1; fi echo "Uninstalling esp32 ..."