Skip to content

Commit ebf6ae8

Browse files
committed
Add step to assemble unified image in CI workflow, Changing paths
1 parent 86fc2d0 commit ebf6ae8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build_boards.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ jobs:
4949
chmod +x ./scripts/build_and_check.sh
5050
./scripts/build_and_check.sh ${{ matrix.board_type }}
5151
52+
- name: Assemble unified image
53+
run: |
54+
cd ./boards/${{ matrix.board_type }}
55+
chmod +x ../../scripts/assemble-unified-image-esp.sh
56+
5257
- name: Archive Firmware
5358
uses: actions/upload-artifact@v4
5459
with:

scripts/build_and_check.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pushd boards/${BOARD} >/dev/null
5353
rm -rf build
5454

5555

56-
cd ../../third_party/micropython/ports/esp32
56+
# cd ../../third_party/micropython/ports/esp32
5757

5858
# Inject flags so that:
5959
# • C builds drop -Werror=stringop-overflow

0 commit comments

Comments
 (0)