-
Notifications
You must be signed in to change notification settings - Fork 19
298 lines (259 loc) · 8.89 KB
/
ci.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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
name: UBC Formula Electric CI
on:
pull_request:
jobs:
clang-format:
name: Check C Formatting
runs-on: ubuntu-22.04
container:
image: ubcformulaelectric/environment:latest
credentials:
username: ubcformulaelectric
password: ${{ secrets.DOCKER_TOKEN }}
steps:
# Fix to get git diff working in a Docker container
# https://github.com/actions/checkout/issues/363
- name: Setup git
run: git config --global --add safe.directory $(realpath .)
- name: Checkout repository
uses: actions/checkout@v4
- name: Format code
run: python3 scripts/utilities/fix_formatting.py
- name: Check for differences
run: git --no-pager diff --color --exit-code
codegen:
name: Check CubeMX Code Gen
runs-on: ubuntu-22.04
needs: [ clang-format ]
strategy:
fail-fast: false
matrix:
include:
- board: VC
ioc_dir: firmware/quadruna/VC/src/cubemx
env_version: latest
- board: BMS
ioc_dir: firmware/quadruna/BMS/src/cubemx
env_version: latest
- board: FSM
ioc_dir: firmware/quadruna/FSM/src/cubemx
env_version: latest
- board: RSM
ioc_dir: firmware/quadruna/RSM/src/cubemx
env_version: latest
- board: CRIT
ioc_dir: firmware/quadruna/CRIT/src/cubemx
env_version: latest
- board: f4dev
ioc_dir: firmware/dev/f4dev/src/cubemx
env_version: latest
- board: h7dev
ioc_dir: firmware/dev/h7dev/src/cubemx
env_version: latest
# - board: BMS_Quint
# ioc_dir: firmware/quintuna/BMS/src/cubemx
# env_version: cube_6_12_0
- board: CRIT
ioc_dir: firmware/quintuna/CRIT/src/cubemx
env_version: cube_6_12_0
# - board: FSM_Quint
# ioc_dir: firmware/quintuna/FSM/src/cubemx
# env_version: cube_6_12_0
- board: RSM
ioc_dir: firmware/quintuna/RSM/src/cubemx
env_version: cube_6_12_0
- board: VC
ioc_dir: firmware/quintuna/VC/src/cubemx
env_version: cube_6_12_0
container:
image: ubcformulaelectric/environment:${{ matrix.env_version }}
credentials:
username: ubcformulaelectric
password: ${{ secrets.DOCKER_TOKEN }}
steps:
# Fix to get git diff working in a Docker container
# https://github.com/actions/checkout/issues/363
- name: Setup git
run: git config --global --add safe.directory $(realpath .)
- name: Checkout repository
uses: actions/checkout@v4
- name: Generate Log4J file
run: python3 scripts/utilities/generate_log4j_properties.py --log4j_properties_output /root/.stm32cubemx/log4j.properties
# To ensure that the generated STM32CubeMX code is up to date with the .ioc file, we
# we also generate a checksum from the .ioc file when code is generated during builds.
# During CI, we re-generate the checksum. If it matches, then the code is up to date,
# otherwise, you need to re-generate STM32CubeMX code locally.
- name: Generate checksum
run: |
python3 scripts/utilities/generate_md5_checksum.py \
$GITHUB_WORKSPACE/${{ matrix.ioc_dir }}/${{ matrix.board }}.ioc \
$GITHUB_WORKSPACE/${{ matrix.ioc_dir }}/${{ matrix.board }}.ioc.md5
- name: Check for differences
run: git --no-pager diff --color --exit-code
build-firmware:
needs: [ clang-format ]
name: Build Firmware Binaries
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- board: quadruna_VC
env_version: latest
- board: quadruna_BMS
env_version: latest
- board: quadruna_FSM
env_version: latest
- board: quadruna_RSM
env_version: latest
- board: quadruna_CRIT
env_version: latest
- board: f4dev
env_version: latest
- board: h7dev
env_version: latest
# - board: quintuna_BMS
# env_version: cube_6_12_0
- board: quintuna_CRIT
env_version: cube_6_12_0
# - board: quintuna_FSM
# env_version: cube_6_12_0
- board: quintuna_RSM
env_version: cube_6_12_0
- board: quintuna_VC
env_version: cube_6_12_0
container:
image: ubcformulaelectric/environment:${{ matrix.env_version }}
credentials:
username: ubcformulaelectric
password: ${{ secrets.docker_token }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- uses: ./.github/actions/build_binary
with:
board: ${{ matrix.board }}
test-firmware:
needs: [ clang-format ]
name: Test Firmware
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
include:
- board: VC
car: quadruna
- board: BMS
car: quadruna
- board: FSM
car: quadruna
- board: RSM
car: quadruna
- board: CRIT
car: quadruna
container:
image: ubcformulaelectric/environment:latest
credentials:
username: ubcformulaelectric
password: ${{ secrets.DOCKER_TOKEN }}
env:
BUILD_DIR: build_fw_test
steps:
# Fix to ensure that commands like git status work in child directories
# for gitpython in git_commit_info
- name: Setup git
run: git config --global --add safe.directory $(realpath .)
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: |
cmake --preset "FW Test CI" -B $BUILD_DIR
cmake --build $BUILD_DIR --target ${{ matrix.car }}_${{ matrix.board }}_test
- name: Run Tests
run: |
cd $BUILD_DIR/firmware/${{ matrix.car }}/${{ matrix.board }}
valgrind --tool=memcheck --leak-check=yes ./${{ matrix.car }}_${{ matrix.board }}_test
test-shared:
name: Test Shared
runs-on: ubuntu-22.04
needs: [ clang-format ]
container:
image: ubcformulaelectric/environment:latest
credentials:
username: ubcformulaelectric
password: ${{ secrets.DOCKER_TOKEN }}
env:
BUILD_DIR: build_fw_test
steps:
# Fix to ensure that commands like git status work in child directories
# for gitpython in git_commit_info
- name: Setup git
run: git config --global --add safe.directory $(realpath .)
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: |
cmake --preset "FW Test CI" -B $BUILD_DIR
cmake --build $BUILD_DIR --target shared_test
- name: Run tests
run: |
cd $BUILD_DIR/firmware/shared
valgrind --tool=memcheck --leak-check=yes ./shared_test
test-fakegen:
name: Test Fake Function Generation
runs-on: ubuntu-22.04
needs: [ clang-format ]
container:
image: ubcformulaelectric/environment:latest
credentials:
username: ubcformulaelectric
password: ${{ secrets.DOCKER_TOKEN }}
env:
BUILD_DIR: build_fw_test
steps:
# Fix to ensure that commands like git status work in child directories
# for gitpython in git_commit_info
- name: Setup git
run: git config --global --add safe.directory $(realpath .)
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
run: |
cmake --preset "FW Test CI" -B $BUILD_DIR
cmake --build $BUILD_DIR --target fakegen_test
- name: Run tests
run: |
cd $BUILD_DIR/scripts/code_generation/fakegen
test-logfs:
name: Test logfs
runs-on: ubuntu-22.04
needs: [ clang-format ]
container:
image: ubcformulaelectric/environment:latest
credentials:
username: ubcformulaelectric
password: ${{ secrets.DOCKER_TOKEN }}
env:
BUILD_DIR: build_fw_test
steps:
# Fix to ensure that commands like git status work in child directories
# for gitpython in git_commit_info
- name: Setup git
run: git config --global --add safe.directory $(realpath .)
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build and install `logfs`
run: |
cmake --preset "FW Test CI" -B $BUILD_DIR
cmake --build $BUILD_DIR --target install_python_logfs
pytest -v firmware/logfs/test