Skip to content
name: "Cross-compile all firmware applications"
on:
push:
branches:
- "*"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
defaults:
run:
working-directory: ot3-firmware
jobs:
name: "Cross-Compile/Check"

Check failure on line 17 in .github/workflows/build-all-applications.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-all-applications.yaml

Invalid workflow file

You have an error in your yaml syntax on line 17
runs-on: "ubuntu-20.04"
timeout-minutes: 20
steps:
- name: Checkout ot3-firmware repo
uses: actions/checkout@4
with:
path: ot3-firmware
- name: Checkout github actions directory
uses: actions/checkout@v4
with:
sparse-checkout: |
.github/actions
sparse-checkout-cone-mode: false
path: actions
- name: Setup main
uses: ./actions/.github/actions/main-setup
with:
cache-version: ${{ secrets.CACHE_VERSION }}
- name: Configure
run: cmake --preset=cross .
- name: Build all STM32G4 applications
run: cmake --build --preset=firmware-g4 --target firmware-images firmware-applications