From abe0689c26f5ed4be2ad1462f0566c3dc03f728f Mon Sep 17 00:00:00 2001 From: "Earle F. Philhower, III" Date: Tue, 16 Apr 2024 16:52:46 -0700 Subject: [PATCH] Get ESP32 builds working again ESP32 Arduino has changed their test infrastructure, need to adjust --- tests/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/common.sh b/tests/common.sh index 29ea675..0662cee 100755 --- a/tests/common.sh +++ b/tests/common.sh @@ -117,6 +117,8 @@ if [ "$BUILD_TYPE" = "build" ]; then elif [ "$BUILD_TYPE" = "build_esp32" ]; then install_arduino install_esp32 "$HOME/arduino_ide" + mkdir -p "$HOME/Arduino/hardware" + install_esp32 "$HOME/Arduino" export FQBN="espressif:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app" mkdir -p "$GITHUB_WORKSPACE/hardware" ln -s "$GITHUB_WORKSPACE/../" "$GITHUB_WORKSPACE/libraries"