Skip to content

Commit 8ea6bc4

Browse files
authored
Update build.yml
1 parent dda0e32 commit 8ea6bc4

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@ jobs:
1010
- uses: actions/checkout@v4
1111
with:
1212
submodules: true
13-
- name: make
14-
run: |
15-
sudo apt-get install gcc-arm-none-eabi libnewlib-arm-none-eabi
16-
make -C src/opencv PLATFORM=embedded/rp2350
17-
make -C micropython/mpy-cross
18-
make -C micropython/ports/rp2 BOARD=SPARKFUN_XRP_CONTROLLER submodules
19-
make BOARD=SPARKFUN_XRP_CONTROLLER
13+
- name: Install packages
14+
run: sudo apt-get install gcc-arm-none-eabi libnewlib-arm-none-eabi
15+
- name: Build OpenCV
16+
run: make -C src/opencv PLATFORM=embedded/rp2350
17+
- name: Build MPY Cross
18+
run: make -C micropython/mpy-cross
19+
- name: Submodules
20+
run: make -C micropython/ports/rp2 BOARD=SPARKFUN_XRP_CONTROLLER submodules
21+
- name: Build firmware
22+
run: make BOARD=SPARKFUN_XRP_CONTROLLER

0 commit comments

Comments
 (0)