Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f1337ff

Browse files
committed
fix: firmware CI — source IDF environment and use v5.2 image
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 <[email protected]>
1 parent e94c705 commit f1337ff

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/firmware-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@ jobs:
1515
name: Build ESP32-S3 Firmware
1616
runs-on: ubuntu-latest
1717
container:
18-
image: espressif/idf:v5.4
18+
image: espressif/idf:v5.2
1919

2020
steps:
2121
- uses: actions/checkout@v4
2222

2323
- name: Build firmware
2424
working-directory: firmware/esp32-csi-node
2525
run: |
26+
. $IDF_PATH/export.sh
2627
idf.py set-target esp32s3
2728
idf.py build
2829

0 commit comments

Comments
 (0)