Do not re-create image file if no changes, and silence output if noth… #6
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 | |