Skip to content

Commit

Permalink
Fixed makefile workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
rombrew committed Jan 22, 2024
1 parent 629a351 commit 574d7bc
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,22 @@ jobs:
- name: Run bench verify
run: make -C bench verify

- uses: libsdl-org/setup-sdl@main
- name: Set up arm-none-eabi-gcc
uses: ryanwinter/arm-none-eabi-gcc@master
with:
release: '10.3-2021.10'

- 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

- name: Set up libsdl-org
uses: libsdl-org/setup-sdl@main
id: sdl
with:
install-linux-dependencies: true
Expand All @@ -27,16 +42,4 @@ jobs:

- name: Build GUI front-end software
run: make -C phobia

- name: arm-none-eabi-gcc
uses: ryanwinter/arm-none-eabi-gcc@master

- 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

0 comments on commit 574d7bc

Please sign in to comment.