From c21e0dafd7a23e6fe3fccdf92b63f8cb684e589d Mon Sep 17 00:00:00 2001 From: Alex Efimov Date: Mon, 26 Jan 2026 05:03:24 +0100 Subject: [PATCH] Correctly initialize and update git submodules for IDF in autobuild.sh Fixing autobuild script so ESP32 binaries now built correctly --- workflows/autobuild.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/workflows/autobuild.sh b/workflows/autobuild.sh index b698342..1a31cc9 100755 --- a/workflows/autobuild.sh +++ b/workflows/autobuild.sh @@ -29,6 +29,7 @@ sudo apt install -y git wget flex bison gperf python3 python3-pip python3-venv c git clone --recursive https://github.com/espressif/esp-idf.git cd esp-idf git checkout tags/v5.5 +git submodule update --init --recursive ./install.sh esp32s3 . ./export.sh cd ..