-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (31 loc) · 940 Bytes
/
ci_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: CI on SWatch project
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout SWatch
uses: actions/checkout@v4
with:
repository: Vanperdung/pico-swatch
path: ${{github.workspace}}
- name: Checkout Pico SDK
uses: actions/checkout@v4
with:
repository: raspberrypi/pico-sdk
path: ${{github.workspace}}/pico-sdk
- name: Configure
run: |
sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib
cmake -B ${{github.workspace}}/build -DPICO_SDK_PATH=${{github.workspace}}/pico-sdk
- name: Build
run: cmake --build ${{github.workspace}}/build
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: sw-artifact
path: ${{github.workspace}}/build/swatch.uf2