-
Notifications
You must be signed in to change notification settings - Fork 0
138 lines (119 loc) · 3.3 KB
/
Copy pathci.yml
File metadata and controls
138 lines (119 loc) · 3.3 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
name: CI Build
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
workflow_dispatch:
jobs:
build-arm-cortex-m4:
name: Build Cortex-M4 (arm-none-eabi) on ${{ matrix.distro }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro: [ ubuntu ]
container:
image: ghcr.io/emrainey/bare-metal-dev-ubuntu:latest
defaults:
run:
shell: sh
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Verify toolchain
run: |
cmake --version
ninja --version
arm-none-eabi-gcc --version
- name: Configure and Build Cortex-M4
run: cmake --workflow --preset on-target-cortex-m4-gcc-arm-none-eabi-ci
build-arm-cortex-m7:
name: Build Cortex-M7 (arm-none-eabi) on ${{ matrix.distro }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro: [ ubuntu ]
container:
image: ghcr.io/emrainey/bare-metal-dev-ubuntu:latest
defaults:
run:
shell: sh
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Verify toolchain
run: |
cmake --version
ninja --version
arm-none-eabi-gcc --version
- name: Configure and Build Cortex-M7
run: cmake --workflow --preset on-target-cortex-m7-gcc-arm-none-eabi-ci
build-native-gcc:
name: Build and Test (native GCC) on ${{ matrix.distro }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro: [ ubuntu ]
container:
image: ghcr.io/emrainey/bare-metal-dev-ubuntu:latest
defaults:
run:
shell: sh
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Verify toolchain
run: |
cmake --version
ninja --version
gcc --version
- name: Configure, Build, and Test
run: cmake --workflow --preset on-host-native-gcc
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results-gcc-${{ matrix.distro }}
path: build/native-gcc/Testing/**/*.xml
if-no-files-found: ignore
build-native-llvm:
name: Build and Test (native LLVM) on ${{ matrix.distro }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro: [ ubuntu ]
container:
image: ghcr.io/emrainey/bare-metal-dev-ubuntu:latest
defaults:
run:
shell: sh
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Verify toolchain
run: |
cmake --version
ninja --version
clang --version
clang++ --version
- name: Configure, Build, and Test
run: cmake --workflow --preset on-host-native-llvm
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: test-results-llvm-${{ matrix.distro }}
path: build/native-llvm/Testing/**/*.xml
if-no-files-found: ignore