Skip to content

Commit

Permalink
fix(release): Use correct FQBN for release test
Browse files Browse the repository at this point in the history
  • Loading branch information
me-no-dev committed Aug 2, 2024
1 parent cddaba6 commit a4fb227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/on-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..."
Expand All @@ -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 ..."
Expand Down

0 comments on commit a4fb227

Please sign in to comment.