Fixed github workflow. #36
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@master | |
- name: Run bench test | |
run: make -C bench test | |
- name: Set up arm-none-eabi-gcc | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
with: | |
release: latest | |
- name: Build PHOBIA_rev5 firmware | |
run: make -C src HWREV=PHOBIA_rev5 | |
- name: Build PESC_r1 firmware | |
run: make -C src HWREV=PESC_r1 | |
- name: Build MKESC_84200 firmware | |
run: make -C src HWREV=MKESC_84200 | |