Skip to content

fix ci_build.yml

fix ci_build.yml #18

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 Pico SDK
uses: actions/checkout@v4
with:
repository: raspberrypi/pico-sdk
path: pico-sdk
- name: Checkout SWatch
uses: actions/checkout@v4
with:
repository: Vanperdung/pico-swatch
path: .
- name: Configure
run: |
ls ${{github.workspace}}/pico-sdk
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: Upload Artifact
# uses: actions/upload-artifact@v4
# with:
# name: cmake-reports
# path: ${{github.workspace}}/**
- name: Build
run: cmake --build ${{github.workspace}}/build