Skip to content

Commit 300d236

Browse files
committed
Fix IDF setup path by cloning submodules first
1 parent ca744d2 commit 300d236

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build_boards.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,17 @@ jobs:
4444
with:
4545
python-version: 3.10.16
4646

47+
- name: Fetch submodules
48+
run: |
49+
git submodule init
50+
git submodule update --recursive
51+
4752
- name: Setup IDF
4853
run: |
4954
source ./third_party/micropython/tools/ci.sh && ci_esp32_idf_setup
5055
51-
- name: Prepare to Build Tensorflow Micropython Firmware for ESP32
56+
- name: Prepare micropython submodules
5257
run: |
53-
git submodule init
54-
git submodule update --recursive
5558
cd third_party/micropython
5659
git submodule update --init lib/axtls
5760
git submodule update --init lib/berkeley-db-1.xx

0 commit comments

Comments
 (0)