Skip to content

WIP workflow

WIP workflow #11

name: Build clang runtime builtins
on:
workflow_dispatch:
push:
jobs:
build:
name: build
runs-on: ubuntu-latest
container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest
strategy:
fail-fast: false
matrix:
target:
- core: cortex-m3
se: st33
- core: cortex-m35p+nodsp
se: st33k1
steps:
- uses: actions/checkout@v4
with:
ref: feat/apa/clangrt
sparse-checkout: |
tools/build_clangrt_builtins.sh
sparse-checkout-cone-mode: false
- run: ./tools/build_clangrt_builtins.sh -t ${{ matrix.target.core }} -o arch/${{ matrix.target.se }}/lib
- run: find
- uses: actions/upload-artifact@v4
with:
name: output-${{ matrix.target.se }}
path: arch/
build:

Check failure on line 38 in .github/workflows/build_clangrt_builtins.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_clangrt_builtins.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
name: merge
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/upload-artifact/merge@v4
with:
name: output
pattern: output-*
delete-merged: true