2024-07-27 11:39:16 +00:00
|
|
|
name: Build STM32
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
board:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-stm32:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-09-22 11:39:35 +00:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
2024-09-27 08:42:27 +00:00
|
|
|
- name: Build STM32WL
|
2024-09-24 05:47:31 +00:00
|
|
|
id: build
|
|
|
|
uses: ./.github/actions/build-variant
|
2024-07-27 11:39:16 +00:00
|
|
|
with:
|
2024-09-24 05:47:31 +00:00
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
board: ${{ inputs.board }}
|
|
|
|
build-script-path: bin/build-stm32.sh
|
|
|
|
artifact-paths: |
|
2024-07-27 11:39:16 +00:00
|
|
|
release/*.hex
|
|
|
|
release/*.bin
|