Skip to content

Commit e5afa62

Browse files
authored
Merge pull request #5 from MATTYGILO/codex/fix-idf.py-not-found-error
Fix build workflow submodule order
2 parents ad0f407 + 0ddc514 commit e5afa62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build_boards.yml

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

47-
- name: Setup IDF
48-
run: |
49-
source ./third_party/micropython/tools/ci.sh && ci_esp32_idf_setup
50-
5147
- name: Prepare to Build Tensorflow Micropython Firmware for ESP32
5248
run: |
5349
git submodule init
@@ -59,6 +55,10 @@ jobs:
5955
make BOARD= submodules
6056
cd ../../../
6157
58+
- name: Setup IDF
59+
run: |
60+
source ./third_party/micropython/tools/ci.sh && ci_esp32_idf_setup
61+
6262
- name: Setup Build for Tensorflow
6363
run: |
6464
source ./esp-idf/export.sh
@@ -84,6 +84,6 @@ jobs:
8484
name: microlite-esp32-${{ matrix.board_type }}-firmware
8585
path: |
8686
./boards/${{ matrix.board_type }}/build/bootloader/bootloader.bin
87-
./boards/${{ matrix.board_type }}/build/partition_table/partition-table.bin
87+
./boards/${{ matrix.board_type }}/build/partition_table/partition-table.bin # yamllint disable-line rule:line-length
8888
./boards/${{ matrix.board_type }}/build/micropython.bin
8989
./boards/${{ matrix.board_type }}/build/micropython.elf

0 commit comments

Comments
 (0)