Skip to content

this works on my repository... #81

this works on my repository...

this works on my repository... #81

name: Build Pixracer Pro
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install toolchain
run: sudo apt -y install gcc-arm-none-eabi
- name: check toolchain
run: arm-none-eabi-gcc --version
- name: build
run: cd pixracer_pro && mkdir build && cd build && cmake .. && make