Skip to content

Commit 819eda1

Browse files
authored
Create build.yml
1 parent c5e2600 commit 819eda1

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build firmware
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
with:
12+
submodules: true
13+
- name: make
14+
run: |
15+
sudo apt-get install gcc-arm-none-eabi libnewlib-arm-none-eabi
16+
make -C micropython/mpy-cross
17+
make -C micropython/ports/rp2 BOARD=SPARKFUN_XRP_CONTROLLER submodules
18+
make BOARD=SPARKFUN_XRP_CONTROLLER

0 commit comments

Comments
 (0)