CI #168
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
# Copyright © SixtyFPS GmbH <info@slint.dev> | |
# SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0 | |
name: CI | |
on: | |
push: | |
branches: [main, "feature/*"] | |
pull_request: | |
branches: [main, "feature/*"] | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, macOS-12, macos-14, windows-2022] | |
board: [stm32h735g-dk, stm32h747i-disco] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: ${{ matrix.board }} | |
- uses: seanmiddleditch/gha-setup-ninja@v5 | |
- name: Install GNU Arm Embedded Toolchain | |
uses: carlosperate/arm-none-eabi-gcc-action@v1 | |
with: | |
release: '13.3.Rel1' | |
- name: CMake configure | |
working-directory: ${{ matrix.board }} | |
run: | | |
cmake --preset Debug | |
- name: CMake build | |
working-directory: ${{ matrix.board }} | |
run: | | |
cmake --build --preset Debug |