From f1337ff1a23f0fa5b097443ec6a5581ec6bf2692 Mon Sep 17 00:00:00 2001 From: ruv Date: Tue, 3 Mar 2026 11:52:57 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20firmware=20CI=20=E2=80=94=20source=20IDF?= =?UTF-8?q?=20environment=20and=20use=20v5.2=20image?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The espressif/idf container requires `. $IDF_PATH/export.sh` to put idf.py on PATH. GitHub Actions container: runs with plain sh which skips the container entrypoint. Also downgrade from v5.4 to v5.2 which matches our local Docker build environment. Co-Authored-By: claude-flow --- .github/workflows/firmware-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/firmware-ci.yml b/.github/workflows/firmware-ci.yml index f5b6c798..e627e8ed 100644 --- a/.github/workflows/firmware-ci.yml +++ b/.github/workflows/firmware-ci.yml @@ -15,7 +15,7 @@ jobs: name: Build ESP32-S3 Firmware runs-on: ubuntu-latest container: - image: espressif/idf:v5.4 + image: espressif/idf:v5.2 steps: - uses: actions/checkout@v4 @@ -23,6 +23,7 @@ jobs: - name: Build firmware working-directory: firmware/esp32-csi-node run: | + . $IDF_PATH/export.sh idf.py set-target esp32s3 idf.py build