-
Notifications
You must be signed in to change notification settings - Fork 4
346 lines (307 loc) · 11.8 KB
/
qa-integration.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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# Copyright (c) 2021-2022 TiaC Systems
# Copyright (c) 2021 Li-Pro.Net
# SPDX-License-Identifier: Apache-2.0
name: QA Integration Test
on:
schedule:
- cron: "0 2 * * *" # run at 2 AM UTC
workflow_dispatch: # And manually on button click
pull_request:
types: [opened, synchronize, reopened]
paths:
- 'applications/**'
- 'arch/**'
- 'boards/**'
- 'cmake/**'
- 'drivers/**'
- 'dts/**'
- 'include/**'
- 'lib/**'
- 'modules/**'
- 'samples/**'
- 'tests/**'
- 'soc/**'
- 'subsys/**'
- '**/CMakeLists.txt'
- '**/Kconfig*'
- '**.conf'
- '**.defconfig'
- '**.overlay'
- '**.yaml'
- 'scripts/requirements-*'
- 'scripts/requirements.txt'
- 'west.yml'
- '.github/workflows/qa-integration.yml'
jobs:
qa-samples-integration:
name: Run integration tests for samples
if: github.repository_owner == 'tiacsys'
runs-on: [self-hosted, ci-32g-x8, linux, x64, container]
container:
image: ghcr.io/zephyrproject-rtos/ci:v0.26.5
options: '--cpus 4 --memory 8g --entrypoint /bin/bash'
env:
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.16.3
steps:
- name: Apply container owner mismatch workaround
run: |
# FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
# match the container user UID because of the way GitHub
# Actions runner is implemented. Remove this workaround when
# GitHub comes up with a fundamental fix for this problem.
git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: Update GitHub PATH for west
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Clean working directory
uses: git9527/action-clean@v1
with:
keepGit: true
- name: Checkout the code
uses: actions/checkout@v4
with:
fetch-depth: 0
show-progress: true
path: workspace/bridle
ref: ${{ github.ref }}
- name: Restore PIP Cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-qa-pip
- name: Install base dependencies
working-directory: workspace
run: |
pip3 install --upgrade pip
pip3 install --upgrade setuptools
pip3 install --upgrade --requirement bridle/scripts/requirements-base.txt
- name: West init and update
working-directory: workspace
run: |
west init -l bridle
west update
west zephyr-export
west bridle-export
- name: Install build and test dependencies
working-directory: workspace
run: |
pip3 install --upgrade --requirement zephyr/scripts/requirements-base.txt
pip3 install --upgrade --requirement zephyr/scripts/requirements-build-test.txt
pip3 install --upgrade --requirement zephyr/scripts/requirements-run-test.txt
pip3 install --upgrade --requirement zephyr/scripts/requirements-extras.txt
pip3 install --upgrade --requirement zephyr/scripts/requirements-compliance.txt
pip3 install --upgrade --requirement bridle/scripts/requirements-build.txt
- name: Build samples
working-directory: workspace
run: |
west twister --verbose --integration \
--outdir twister-out --no-clean --inline-logs \
--enable-size-report --platform-reports \
--testsuite-root bridle/samples/button
# --testsuite-root bridle/samples/button \
# --testsuite-root bridle/samples/helloshell
- name: Upload integration test results
uses: actions/upload-artifact@v3
with:
name: twister-samples.xml
path: workspace/twister-out/twister.xml
- name: Convert integration test reports to annotations
uses: mikepenz/action-junit-report@v3
with:
check_name: twister-report (samples)
report_paths: "**/twister-out/twister.xml"
require_tests: true
fail_on_failure: false
if: always()
qa-shield-integration:
name: Run integration tests for shields
if: github.repository_owner == 'tiacsys'
runs-on: [self-hosted, ci-32g-x8, linux, x64, container]
container:
image: ghcr.io/zephyrproject-rtos/ci:v0.26.5
options: '--cpus 4 --memory 8g --entrypoint /bin/bash'
env:
ZEPHYR_SDK_INSTALL_DIR: /opt/toolchains/zephyr-sdk-0.16.3
steps:
- name: Apply container owner mismatch workaround
run: |
# FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
# match the container user UID because of the way GitHub
# Actions runner is implemented. Remove this workaround when
# GitHub comes up with a fundamental fix for this problem.
git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: Update GitHub PATH for west
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Clean working directory
uses: git9527/action-clean@v1
with:
keepGit: true
- name: Checkout the code
uses: actions/checkout@v4
with:
fetch-depth: 0
show-progress: true
path: workspace/bridle
ref: ${{ github.ref }}
- name: Restore PIP Cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-qa-pip
- name: Install base dependencies
working-directory: workspace
run: |
pip3 install --upgrade pip
pip3 install --upgrade setuptools
pip3 install --upgrade --requirement bridle/scripts/requirements-base.txt
- name: West init and update
working-directory: workspace
run: |
west init -l bridle
west update
west zephyr-export
west bridle-export
- name: Install build and test dependencies
working-directory: workspace
run: |
pip3 install --upgrade --requirement zephyr/scripts/requirements-base.txt
pip3 install --upgrade --requirement zephyr/scripts/requirements-build-test.txt
pip3 install --upgrade --requirement zephyr/scripts/requirements-run-test.txt
pip3 install --upgrade --requirement zephyr/scripts/requirements-extras.txt
pip3 install --upgrade --requirement zephyr/scripts/requirements-compliance.txt
pip3 install --upgrade --requirement bridle/scripts/requirements-build.txt
- name: Build integration tests for shields
working-directory: workspace
run: |
#
# Disabled in the meantime because the execution time is still
# too high:
#
# --testsuite-root bridle/tests/shields/grove_btn/dts_bindings \
# --testsuite-root bridle/tests/shields/grove_led/dts_bindings \
#
west twister --verbose \
--outdir twister-out --no-clean --inline-logs \
--enable-size-report --platform-reports \
--platform arduino_zero \
--testsuite-root bridle/tests/shields/x_grove_testbed/dts_bindings
# --platform arduino_zero \
# --platform mimxrt1010_evk \
# --platform mimxrt1060_evk \
# --platform mimxrt1060_evkb \
# --platform nucleo_f303re \
# --platform nucleo_f401re \
# --platform nucleo_f413zh \
# --platform nucleo_f767zi \
# --platform rpi_pico \
# --platform seeed_xiao_samd21 \
# --platform seeeduino_xiao \
# --platform seeeduino_lotus \
# --platform waveshare_rp2040_plus \
# --platform waveshare_rp2040_plus@16mb \
# --testsuite-root bridle/tests/shields/grove/dts_bindings \
# --testsuite-root bridle/tests/shields/x_grove_testbed/dts_bindings
- name: Upload integration test results
uses: actions/upload-artifact@v3
with:
name: twister-shields.xml
path: workspace/twister-out/twister.xml
- name: Convert integration test reports to annotations
uses: mikepenz/action-junit-report@v3
with:
check_name: twister-report (shields)
report_paths: "**/twister-out/twister.xml"
require_tests: true
fail_on_failure: false
if: always()
# qa-target-integration:
# name: Run integration tests on targets
# if: github.repository_owner == 'tiacsys'
# runs-on: [self-hosted, linux, gnuarmemb, zephyr-sdk, tiac_magpie]
# strategy:
# matrix:
# board: [tiac_magpie]
# steps:
# - name: Update GitHub PATH for west
# run: |
# echo "$HOME/.local/bin" >> $GITHUB_PATH
# - name: Clean working directory
# uses: git9527/action-clean@v1
# with:
# keepGit: true
# - name: Checkout the code
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# show-progress: true
# path: workspace/bridle
# ref: ${{ github.ref }}
# - name: Install base dependencies
# working-directory: workspace
# run: |
# pip3 install --upgrade pip
# pip3 install --upgrade setuptools
# pip3 install --upgrade --requirement bridle/scripts/requirements-base.txt
# - name: West init and update
# working-directory: workspace
# run: |
# west init -l bridle
# west update
# west zephyr-export
# west bridle-export
# - name: Install build and test dependencies
# working-directory: workspace
# run: |
# pip3 install --upgrade --requirement zephyr/scripts/requirements-base.txt
# pip3 install --upgrade --requirement zephyr/scripts/requirements-build-test.txt
# pip3 install --upgrade --requirement zephyr/scripts/requirements-run-test.txt
# pip3 install --upgrade --requirement zephyr/scripts/requirements-extras.txt
# pip3 install --upgrade --requirement zephyr/scripts/requirements-compliance.txt
# pip3 install --upgrade --requirement bridle/scripts/requirements-build.txt
# - name: Execute integration tests on target
# working-directory: workspace
# env:
# HARDWARE_MAP: bridle/.github/${{ github.job }}/map-${{ matrix.board }}.yml
# run: |
# #
# # Disabled in the meantime because the execution time is still
# # too high and most of the core tests are already performed by
# # Zephyr in any case:
# #
# # --tag arm \
# # --tag vector_relay \
# # --tag kernel \
# #
# west twister --verbose --jobs 4 \
# --retry-failed 5 --retry-interval 120 \
# --outdir twister-out --no-clean --inline-logs \
# --enable-size-report --platform-reports \
# --device-testing --hardware-map ${HARDWARE_MAP} \
# --extra-args SHIELD="loopback_test_tmph" \
# --alt-config-root bridle/zephyr/alt-config \
# --testsuite-root bridle/tests \
# --testsuite-root zephyr/tests \
# --tag bridle \
# --tag hwinfo \
# --tag random \
# --tag entropy \
# --tag watchdog \
# --tag counter \
# --tag gpio \
# --tag spi \
# --tag uart \
# --tag can
# - name: Upload integration test results
# uses: actions/upload-artifact@v3
# with:
# name: twister-targets.xml
# path: workspace/twister-out/twister.xml
# - name: Convert integration test reports to annotations
# uses: mikepenz/action-junit-report@v3
# with:
# check_name: twister-report (${{ matrix.board }})
# report_paths: "**/twister-out/twister.xml"
# require_tests: true
# fail_on_failure: false
# if: always()