Skip to content

update changes

update changes #25

Workflow file for this run

name: CI on SWatch project
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.16.x'
- name: Use CMake
run: cmake --version
- 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 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