-
Notifications
You must be signed in to change notification settings - Fork 6
71 lines (64 loc) · 1.65 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: 🚀 Deploy
on:
workflow_dispatch:
jobs:
cortex-m0:
uses: libhal/ci/.github/workflows/[email protected]
with:
arch: cortex-m0
version: ${{ github.ref_name }}
os: baremetal
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
secrets: inherit
cortex-m0plus:
uses: libhal/ci/.github/workflows/[email protected]
with:
arch: cortex-m0plus
version: ${{ github.ref_name }}
os: baremetal
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
secrets: inherit
cortex-m1:
uses: libhal/ci/.github/workflows/[email protected]
with:
arch: cortex-m1
version: ${{ github.ref_name }}
os: baremetal
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
secrets: inherit
cortex-m3:
uses: libhal/ci/.github/workflows/[email protected]
with:
arch: cortex-m3
version: ${{ github.ref_name }}
os: baremetal
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
secrets: inherit
cortex-m4:
uses: libhal/ci/.github/workflows/[email protected]
with:
arch: cortex-m4
version: ${{ github.ref_name }}
os: baremetal
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
secrets: inherit
cortex-m4f:
uses: libhal/ci/.github/workflows/[email protected]
with:
arch: cortex-m4f
version: ${{ github.ref_name }}
os: baremetal
compiler: gcc
compiler_version: 12.3
compiler_package: arm-gnu-toolchain
secrets: inherit