Skip to content

Commit a4fb227

Browse files
committed
fix(release): Use correct FQBN for release test
1 parent cddaba6 commit a4fb227

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: .github/scripts/on-release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ arduino-cli core install esp32:esp32
437437
if [ $? -ne 0 ]; then echo "ERROR: Failed to install esp32 ($?)"; exit 1; fi
438438

439439
echo "Compiling example ..."
440-
arduino-cli compile --fqbn espressif:esp32:esp32 $GITHUB_WORKSPACE/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino
440+
arduino-cli compile --fqbn esp32:esp32:esp32 $GITHUB_WORKSPACE/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino
441441
if [ $? -ne 0 ]; then echo "ERROR: Failed to compile example ($?)"; exit 1; fi
442442

443443
echo "Uninstalling esp32 ..."
@@ -457,7 +457,7 @@ if [ "$RELEASE_PRE" == "false" ]; then
457457
if [ $? -ne 0 ]; then echo "ERROR: Failed to install esp32 ($?)"; exit 1; fi
458458

459459
echo "Compiling example ..."
460-
arduino-cli compile --fqbn espressif:esp32:esp32 $GITHUB_WORKSPACE/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino
460+
arduino-cli compile --fqbn esp32:esp32:esp32 $GITHUB_WORKSPACE/libraries/ESP32/examples/CI/CIBoardsTest/CIBoardsTest.ino
461461
if [ $? -ne 0 ]; then echo "ERROR: Failed to compile example ($?)"; exit 1; fi
462462

463463
echo "Uninstalling esp32 ..."

0 commit comments

Comments
 (0)