mirror of
https://github.com/micropython/micropython.git
synced 2025-12-15 17:30:14 +01:00
This is needed to build Cortex-M55 (STM32N6) based boards. Signed-off-by: Damien George <damien@micropython.org>
37 lines
793 B
YAML
37 lines
793 B
YAML
name: stm32 port
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/*.yml'
|
|
- 'tools/**'
|
|
- 'py/**'
|
|
- 'extmod/**'
|
|
- 'shared/**'
|
|
- 'lib/**'
|
|
- 'drivers/**'
|
|
- 'ports/stm32/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build_stm32:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
ci_func: # names are functions in ci.sh
|
|
- stm32_pyb_build
|
|
- stm32_nucleo_build
|
|
- stm32_misc_build
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Install packages
|
|
run: tools/ci.sh stm32_setup && tools/ci.sh stm32_path >> $GITHUB_PATH
|
|
- name: Build ci_${{matrix.ci_func }}
|
|
run: tools/ci.sh ${{ matrix.ci_func }}
|
|
|