File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ - push
5+ - pull_request
6+
7+ env :
8+ DEFAULT_PYTHON : 3.9
9+
10+ jobs :
11+ pico :
12+ name : Raspberry Pi Pico compilation
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Check out code from GitHub
16+ uses : actions/checkout@v2
17+
18+ - name : Install dependencies
19+ run : |
20+ sudo apt-get install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi
21+
22+ - name : Generate RPi Pico binaries
23+ run : |
24+ ./build.sh
25+
26+ - name : ' Upload RPi Pico binary'
27+ uses : actions/upload-artifact@v2
28+ with :
29+ name : pico-uart-bridge.uf2
30+ path : build/uart_bridge.uf2
31+ retention-days : 5
Original file line number Diff line number Diff line change 11[submodule "pico-sdk "]
22 path = pico-sdk
3- url = git@ github.com: raspberrypi/pico-sdk.git
3+ url = https:// github.com/ raspberrypi/pico-sdk.git
You can’t perform that action at this time.
0 commit comments