re-arranted yml #88
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: Build Pixracer Pro | ||
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 update | ||
run: sudo apt -y install gcc-arm-none-eabi | ||
- name: check toolchain | ||
run: arm-none-eabi-gcc --version | ||
- name: build pixracer_pro | ||
run: cd pixracer_pro && mkdir build && cd build && cmake .. && make |