Fixes in CAN and GUI front-end. #13
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 | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run bench verify | |
run: make -C bench verify | |
- name: Set up arm-none-eabi-gcc | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
with: | |
release: latest | |
- name: Build REV5A firmware | |
run: make -C src HWREV=REV5A | |
- name: Build PESC1 firmware | |
run: make -C src HWREV=PESC1 | |
- name: Build VESC6A firmware | |
run: make -C src HWREV=VESC6A | |