Skip to content

Actually fix build. #13

Actually fix build.

Actually fix build. #13

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: windows-latest
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: msys2/setup-msys2@v2
with:
path-type: inherit
msystem: mingw64
install: mingw-w64-x86_64-arm-none-eabi-toolchain
- uses: jwlawson/[email protected]
- name: Configure
run: |
cmake -DCMAKE_C_COMPILER="arm-none-eabi-gcc" -DCMAKE_CXX_COMPILER="arm-none-eabi-g++" -G"MSYS Makefiles" -Bbuild .
- name: Build
run: |
cmake --build ./build --config Debug --target all