Merge pull request #428 from rosflight/PTT/fix_set_param_float #62
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: Varmint Boards Build | |
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: mkdir varmint_build && cd varmint_build && cmake .. -DBOARD_TO_BUILD=varmint && make | |
- name: build pixracer pro | |
run: mkdir pixracer_pro_build && cd pixracer_pro_build && cmake .. -DBOARD_TO_BUILD=pixracer_pro && make |