Skip to content

reformat

reformat #91

name: Build Varmint 10X
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: checkout submodules
run: git submodule update --init --recursive
- name: install toolchain
run: sudo apt -y install gcc-arm-none-eabi
- name: check toolchain
run: arm-none-eabi-gcc --version
- name: build varmint
run: cd varmint_10X && mkdir build && cd build && cmake .. && make -j16