Skip to content

feat: re-add IAP flash profile storage using LPC2134 sector 7 #49

feat: re-add IAP flash profile storage using LPC2134 sector 7

feat: re-add IAP flash profile storage using LPC2134 sector 7 #49

Workflow file for this run

name: Build Firmware
on:
push:
branches: [ master ]
tags: [ '*' ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 10
- name: Install ARM toolchain
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '10.3-2021.10'
- name: Build firmware
run: make all
- name: Show binary size
run: arm-none-eabi-size build/T-962-controller.axf
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: T-962-controller
path: build/T-962-controller.hex
release:
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 10
- name: Install ARM toolchain
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '10.3-2021.10'
- name: Build firmware
run: make all
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: build/T-962-controller.hex