New Controller #18
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Firmware | |
on: | |
push: | |
branches: | |
- "main" | |
tags: | |
- "*" | |
paths: | |
- ".github/**" | |
pull_request: | |
paths: | |
- "Firmware/**" | |
jobs: | |
cmake: | |
runs-on: ubuntu-latest | |
name: Build With cmake | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout Repo | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
name: Install the GCC ARM compiler | |
- run: export PICO_SDK_FETCH_FROM_GIT=true | |
name: Allow getting PICO sdk from git | |
- uses: threeal/cmake-action@main | |
name: Configure and Build Project | |
with: | |
source-dir: Firmware | |
build-dir: Firmware/build |