Target for making mp2 fsbl header #4
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 firmware | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
gcc: ['12.2.Rel1', '13.2.Rel1'] | |
name: "Build firmware" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Arm GNU Toolchain (arm-none-eabi-gcc) | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
with: | |
release: ${{ matrix.gcc }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Build | |
run: make all | |