passkey_fw/.github/workflows/build_arm.yml

66 lines
1.4 KiB
YAML
Raw Normal View History

name: Build ARM
2019-12-27 10:34:25 +01:00
2021-01-26 16:34:29 +01:00
on:
workflow_dispatch:
2021-01-26 16:34:29 +01:00
push:
2022-12-08 03:30:42 +01:00
paths:
2022-12-08 05:47:01 +01:00
- 'src/**'
- 'examples/**'
- 'lib/**'
- 'hw/**'
- 'tools/get_deps.py'
- '.github/workflows/build_arm.yml'
2022-12-08 03:30:42 +01:00
pull_request:
branches: [ master ]
2022-12-08 03:44:26 +01:00
paths:
2022-12-08 05:47:01 +01:00
- 'src/**'
- 'examples/**'
- 'lib/**'
- 'hw/**'
- 'tools/get_deps.py'
- '.github/workflows/build_arm.yml'
2019-12-27 14:58:37 +01:00
2022-12-04 14:29:24 +01:00
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
2019-12-27 14:58:37 +01:00
2019-12-27 10:34:25 +01:00
jobs:
# ---------------------------------------
# Build ARM family
# ---------------------------------------
build-arm:
2021-01-23 12:32:56 +01:00
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
family:
2021-01-26 16:34:29 +01:00
# Alphabetical order
2022-01-05 23:11:39 +01:00
- 'broadcom_32bit'
2023-06-24 18:36:52 +02:00
- 'kinetis_k32l2'
2024-01-11 10:52:18 +01:00
- 'lpc11 lpc13 lpc15'
2023-09-27 11:19:39 +02:00
- 'lpc51'
2023-03-08 06:28:30 +01:00
- 'mm32 msp432e4'
- 'samd11 same5x saml2x'
2023-06-24 18:32:24 +02:00
- 'stm32f2 stm32f3'
2023-09-19 13:33:59 +02:00
- 'stm32l0 stm32wb'
2023-03-08 06:28:30 +01:00
- 'tm4c123 xmc4000'
2021-01-23 12:32:56 +01:00
steps:
- name: Setup Python
2024-01-25 13:13:11 +01:00
uses: actions/setup-python@v5
with:
python-version: '3.x'
2021-01-23 12:32:56 +01:00
- name: Install ARM GCC
uses: carlosperate/arm-none-eabi-gcc-action@v1
with:
release: '11.2-2022.02'
2021-01-23 12:32:56 +01:00
- name: Checkout TinyUSB
uses: actions/checkout@v4
- name: Get Dependencies
2023-05-26 10:25:55 +02:00
run: python3 tools/get_deps.py ${{ matrix.family }}
2021-03-04 14:22:16 +01:00
2021-01-23 12:32:56 +01:00
- name: Build
run: python3 tools/build_make.py ${{ matrix.family }}