We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e2600 commit 819eda1Copy full SHA for 819eda1
.github/workflows/build.yml
@@ -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