We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108c3cc commit 63d8180Copy full SHA for 63d8180
.github/workflows/build_clangrt_builtins.yml
@@ -0,0 +1,29 @@
1
+name: Build clang runtime builtins
2
+on:
3
+ workflow_dispatch:
4
+
5
+jobs:
6
+ build:
7
+ name: Build builtins
8
+ runs-on: ubuntu-latest
9
+ container:
10
+ image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest
11
+ strategy:
12
+ fail-fast: false
13
+ matrix:
14
+ targets:
15
+ - core: cortex-m3
16
+ se: st33
17
+ - core: cortex-m35p+nodsp
18
+ se: st33k1
19
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ with:
23
+ ref: feat/apa/clangrt
24
+ sparse-checkout: |
25
+ tools/build_clangrt_builtins.sh
26
+ sparse-checkout-cone-mode: false
27
28
+ - run: |
29
+ pwd; find
0 commit comments