File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments