File: changeset_testlist.yaml

package info (click to toggle)
uhd 4.8.0.0%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 183,172 kB
  • sloc: cpp: 279,415; python: 109,850; ansic: 103,348; vhdl: 57,230; tcl: 20,007; xml: 8,581; makefile: 2,863; sh: 2,797; pascal: 230; javascript: 120; csh: 94; asm: 20; perl: 11
file content (254 lines) | stat: -rw-r--r-- 6,277 bytes parent folder | download
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
# Test targets:
# - uhd.build.$PLATFORM: Build UHD on given platforms. This includes running unit tests.
#                        Valid values for $PLATFORM are: all, linux, windows, mac.
# - hw.streaming.$DEVICE: Run streaming tests for $DEVICE.
# - hw.rf.$DEVICE: Run RF tests for $DEVICE.
# - devtest.$DEVICE: Run devtests for $DEVICE.

###############################################################################
# STYLE / FORMATTING CHANGES
###############################################################################
- re: \.[ch]pp$
  add:
    - clang-format
  stop: False

###############################################################################
# HOST CHANGES (UHD)
###############################################################################
# If only a unit test changed, then we need to re-run unit tests, but no HW tests
- re: ^host/tests/[^/]+(cpp|py)$|^host/tests/CMakeLists.txt
  add:
    - uhd.build.all
    - uhd.utest.all
# Documentation changes
- re: ^host/docs/
  add:
    - uhd.docs
# If a comment in a public header changed, then most likely the documentation
# changed, but we still want to run other tests, too
- re: ^host/include/uhd/.+\.hpp$
  add:
    - uhd.docs
  include_content: comments
  stop: False
# Device-specific changes. These should trigger HW tests only on those devices
# they affect. We start with daughterboard rules, then motherboard rules.
- re: host/lib/usrp/dboard/zbx/
  add:
    - uhd.build.all
    - hw.rf.x410
    - hw.streaming.x410
    - devtest.x410
- re: host/lib/usrp/dboard/e3xx
  add:
    - uhd.build.all
    - hw.rf.e3xx
    - hw.streaming.e3xx
    - devtest.e3xx
- re: host/lib/usrp/dboard/magnesium
  add:
    - uhd.build.all
    - hw.rf.n310
    - devtest.n310
- re: host/lib/usrp/dboard/rhodium
  add:
    - uhd.build.all
    - hw.rf.n320
    - devtest.n320
- re: host/lib/usrp/dboard/twinrx/
  name: host/lib/usrp/dboard/db_twinrx.cpp
  add:
    - uhd.build.all
    - hw.rf.x310.twinrx
    - hw.rf.x300.twinrx
- re: host/lib/usrp/dboard/.*CMakeLists.txt
  add:
    - uhd.build.all
- re: host/lib/usrp/dboard/db_.+pp$
  add:
    - uhd.build.all
    - hw.rf.x3xx
    - hw.rf.n2xx
- re: host/lib/usrp/b200/
  add:
    - uhd.build.all
    - hw.rf.b2xx
    - hw.streaming.b2xx
    - devtest.b2xx
- re: host/lib/usrp/b100/
  add:
    - uhd.build.all
    - hw.rf.b1xx
    - hw.streaming.b1xx
    - devtest.b1xx
- re: host/lib/usrp/x300/
  add:
    - uhd.build.all
    - hw.rf.x3xx
    - hw.streaming.x3xx
    - devtest.x3xx.all
- re: host/lib/usrp/x400/
  add:
    - uhd.build.all
    - hw.rf.x4xx
    - hw.rf.n3xx
    - hw.streaming.x4xx
    - devtest.x4xx
- re: host/lib/usrp/mpmd/
  add:
    - uhd.build.all
    - hw.rf.x4xx
    - hw.rf.n3xx
    - hw.rf.e3xx
    - hw.streaming.x4xx
    - hw.streaming.n3xx
    - hw.streaming.e3xx
    - devtest.x4xx
    - devtest.e3xx
    - devtest.n3xx
- re: host/lib/usrp/usrp2
  add:
    - uhd.build.all
    - hw.rf.n2xx
- re: host/tests/devtest
  add:
    - uhd.build.all
    - devtest.all
- re: images/manifest
  add:
    - uhd.build.all
    - uhd.utest.all
    - hw.streaming.all
    - hw.rf.all
    - devtest.all
# Catchall rule for UHD changes
- re: host/.+cpp$|host/.*CMakeLists.txt|host/.+hpp$|host/.+ipp$|host/.+c$|host/.+h$|host/.+py$
  add:
    - uhd.build.all
    - uhd.utest.all
    - hw.streaming.all
    - hw.rf.all
    - devtest.all

###############################################################################
# MPM CHANGES
###############################################################################
# When any code file changes, we want to run the unit tests, but run the
# other tests, too
- re: ^mpm/.+hpp$|^mpm/.+cpp$|^mpm/.+py$|^mpm/.+/tests/|^mpm/.*CMakeLists.txt$
  add:
    - uhd.build.linux
    - mpm.utest.all
  stop: False
- re: ^mpm/.+/ad9361|^mpm/.+catalina$|^mpm/.+/dboard_manager/ad936x_db.py
  add:
    - mpm.build.e3xx
    - hw.rf.e3xx
    - devtest.e3xx
- re: ^mpm/.+/periph_manager/n3xx
  add:
    - mpm.build.n3xx
    - hw.rf.n3xx
    - hw.streaming.n3xx
    - devtest.n3xx
- re: ^mpm/.+/ad937x|^mpm/.+/mykonos|^mpm/.+/dboard_manager/mg_|magnesium_manager..pp$
  add:
    - mpm.build.n310
    - hw.rf.n310
    - devtest.n310
- re: ^mpm/.+/dboard_manager/rh_|^mpm/.+/dboard_manager/..._rh.py
  add:
    - mpm.build.n320
    - hw.rf.n320
    - devtest.n320
- re: ^mpm/.+periph_manager/x4xx
  add:
    - hw.streaming.x4xx
  stop: False
- re: ^mpm/.+/rfdc|^mpm/.+_manager/x4xx
  add:
    - mpm.build.x4xx
    - hw.rf.x4xx
    - devtest.x4xx
- re: fbx.py$
  add:
    - mpm.build.x4xx
    - hw.rf.x440
    - devtest.x440
- re: zbx.py
  add:
    - mpm.build.x4xx
    - hw.rf.x410
    - devtest.x410
- re: e31x_db_manager..pp$|^mpm/.+/periph_manager/e31x|e31x_db.py$
  add:
    - mpm.build.e310
    - hw.rf.e310
    - devtest.e310
- re: neon_manager..pp$|^mpm/.+/periph_manager/e320
  add:
    - mpm.build.e320
    - hw.rf.e320
    - devtest.e320
# Catchall rule for MPM changes
- re: ^mpm/
  add:
    - mpm.build.all
    - mpm.utest.all
    - hw.streaming.all
    - hw.rf.all
    - devtest.all

###############################################################################
# CI CHANGES
###############################################################################
# Changes to pipeline infrastructure or build jobs -> build and test all
- re: .ci/templates/stages-.*.yml
  add:
    - uhd.build.all
    - hw.streaming.all
    - hw.rf.all
    - devtest.all
- re: .ci/templates/.*-build.*.yml
  add:
    - uhd.build.all
    - hw.streaming.all
    - hw.rf.all
    - devtest.all
# Devtest
- re: .ci/templates/.*-devtest.*.yml
  add:
    - uhd.build.linux
    - devtest.all
# RF Test
- re: .ci/templates/.*-rf-tests.*.yml
  add:
    - uhd.build.linux
    - hw.rf.all
# Streaming Test
- re: .ci/templates/.*-streaming.*.yml
  add:
    - uhd.build.linux
    - hw.streaming.all
# RF Test x4xx
- re: .ci/templates/tests/.*.yml
  add:
    - uhd.build.linux
    - hw.rf.x4xx

###############################################################################
# LABEL-BASED RULES
###############################################################################
- label: ci:skip_hw_tests
  remove_re:
    - "^hw"
    - "^devtest"

- label: ci:skip_devtests
  remove_re:
    - "^devtest"

- label: ci:skip_rf_tests
  remove_re:
    - "^hw.rf"