-
Notifications
You must be signed in to change notification settings - Fork 15
/
Jenkinsfile
414 lines (374 loc) · 11.9 KB
/
Jenkinsfile
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
// This file relates to internal XMOS infrastructure and should be ignored by external users
@Library('[email protected]') _
def clone_test_deps() {
dir("${WORKSPACE}") {
sh "git clone [email protected]:xmos/test_support"
sh "git -C test_support checkout 961532d89a98b9df9ccbce5abd0d07d176ceda40"
sh "git clone [email protected]:xmos-int/xtagctl"
sh "git -C xtagctl checkout v2.0.0"
sh "git clone [email protected]:xmos/hardware_test_tools"
sh "git -C hardware_test_tools checkout 2f9919c956f0083cdcecb765b47129d846948ed4"
}
}
def archiveLib(String repoName) {
sh "git -C ${repoName} clean -xdf"
sh "zip ${repoName}_sw.zip -r ${repoName}"
archiveArtifacts artifacts: "${repoName}_sw.zip", allowEmptyArchive: false
}
def checkout_shallow()
{
checkout scm: [
$class: 'GitSCM',
branches: scm.branches,
userRemoteConfigs: scm.userRemoteConfigs,
extensions: [[$class: 'CloneOption', depth: 1, shallow: true, noTags: false]]
]
}
getApproval()
pipeline {
agent none
environment {
REPO = 'lib_xua'
}
options {
buildDiscarder(xmosDiscardBuildSettings())
skipDefaultCheckout()
timestamps()
}
parameters {
string(
name: 'TOOLS_VERSION',
defaultValue: '15.3.0',
description: 'The XTC tools version'
)
string(
name: 'XMOSDOC_VERSION',
defaultValue: 'v6.1.3',
description: 'The xmosdoc version')
string(
name: 'INFR_APPS_VERSION',
defaultValue: 'v2.0.1',
description: 'The infr_apps version'
)
}
stages {
stage('Build and test') {
agent {
label 'documentation && x86_64 && linux'
}
stages {
stage('Checkout and lib checks') {
steps {
println "Stage running on ${env.NODE_NAME}"
dir("${REPO}") {
checkout_shallow()
dir("examples") {
withTools(params.TOOLS_VERSION) {
sh 'cmake -G "Unix Makefiles" -B build -DDEPS_CLONE_SHALLOW=TRUE'
}
}
}
warnError("lib checks") {
runLibraryChecks("${WORKSPACE}/${REPO}", "${params.INFR_APPS_VERSION}")
}
}
} // stage('Checkout and lib checks')
stage("Archive Lib") {
steps {
archiveLib(REPO)
}
} //stage("Archive Lib")
stage('Build examples') {
steps {
println "Stage running on ${env.NODE_NAME}"
dir("${REPO}") {
dir("examples") {
withTools(params.TOOLS_VERSION) {
sh 'cmake -G "Unix Makefiles" -B build -DDEPS_CLONE_SHALLOW=TRUE'
sh 'xmake -C build -j 16'
}
}
}
// Archive all the generated .xe files
archiveArtifacts artifacts: "${REPO}/examples/**/*.xe"
}
} // Build examples
stage('Build Documentation') {
steps {
dir("${REPO}") {
warnError("Docs") {
buildDocs()
dir("examples/AN00246_xua_example") {
buildDocs()
}
dir("examples/AN00247_xua_example_spdif_tx") {
buildDocs()
}
dir("examples/AN00248_xua_example_pdm_mics") {
buildDocs()
}
}
} // dir("${REPO}")
} // steps
} // stage('Build Documentation')
}
post {
cleanup {
xcoreCleanSandbox()
}
}
} // Build and test
stage('Build host apps') {
parallel {
stage('Build Linux host app') {
agent {
label 'x86_64&&linux'
}
steps {
println "Stage running on ${env.NODE_NAME}"
dir("${REPO}") {
checkout_shallow()
dir("${REPO}/host/xmosdfu") {
sh 'cmake -B build'
sh 'make -C build'
sh 'mkdir -p Linux64'
sh 'mv build/xmosdfu Linux64/xmosdfu'
archiveArtifacts artifacts: "Linux64/xmosdfu", fingerprint: true
}
}
}
post {
cleanup {
xcoreCleanSandbox()
}
}
} // Build Linux host app
stage('Build Mac x86 host app') {
agent {
label 'x86_64&&macOS'
}
steps {
println "Stage running on ${env.NODE_NAME}"
dir("${REPO}") {
checkout_shallow()
dir("${REPO}/host/xmosdfu") {
sh 'cmake -B build'
sh 'make -C build'
sh 'mkdir -p OSX/x86'
sh 'mv build/xmosdfu OSX/x86/xmosdfu'
archiveArtifacts artifacts: "OSX/x86/xmosdfu", fingerprint: true
}
dir("host_usb_mixer_control") {
sh 'make -f Makefile.OSX'
sh 'mkdir -p OSX/x86'
sh 'mv xmos_mixer OSX/x86/xmos_mixer'
archiveArtifacts artifacts: "OSX/x86/xmos_mixer", fingerprint: true
}
}
}
post {
cleanup {
xcoreCleanSandbox()
}
}
} // Build Mac x86 host app
stage('Build Mac arm host app') {
agent {
label 'arm64&&macos'
}
steps {
println "Stage running on ${env.NODE_NAME}"
dir("${REPO}") {
checkout_shallow()
dir("${REPO}/host/xmosdfu") {
sh 'cmake -B build'
sh 'make -C build'
sh 'mkdir -p OSX/arm64'
sh 'mv build/xmosdfu OSX/arm64/xmosdfu'
archiveArtifacts artifacts: "OSX/arm64/xmosdfu", fingerprint: true
dir("OSX/arm64") {
stash includes: 'xmosdfu', name: 'macos_xmosdfu'
}
}
}
}
post {
cleanup {
xcoreCleanSandbox()
}
}
} // Build Mac arm host app
stage('Build Pi host app') {
agent {
label 'pi'
}
steps {
println "Stage running on ${env.NODE_NAME}"
dir("${REPO}") {
checkout_shallow()
dir("${REPO}/host/xmosdfu") {
sh 'cmake -B build'
sh 'make -C build'
sh 'mkdir -p RPi'
sh 'mv build/xmosdfu RPi/xmosdfu'
archiveArtifacts artifacts: "RPi/xmosdfu", fingerprint: true
}
}
}
post {
cleanup {
xcoreCleanSandbox()
}
}
} // Build Pi host app
stage('Build Windows host app') {
agent {
label 'x86_64&&windows&&usb_audio'
}
steps {
println "Stage running on ${env.NODE_NAME}"
dir("${REPO}") {
checkout_shallow()
dir("${REPO}/host/xmosdfu") {
withVS("vcvars32.bat") {
bat "cmake -B build -G Ninja"
bat "ninja -C build"
bat 'mkdir win32 && cp build/xmosdfu.exe win32/'
archiveArtifacts artifacts: "win32/xmosdfu.exe", fingerprint: true
}
}
dir("host_usb_mixer_control") {
withVS() {
bat 'msbuild host_usb_mixer_control.vcxproj /property:Configuration=Release /property:Platform=x64'
}
bat 'mkdir Win\\x64'
bat 'mv bin/Release/x64/host_usb_mixer_control.exe Win/x64/xmos_mixer.exe'
archiveArtifacts artifacts: "Win/x64/xmos_mixer.exe", fingerprint: true
}
}
}
post {
cleanup {
xcoreCleanSandbox()
}
}
} // Build Windows host app
}
} // Build host apps
stage('Testing') {
parallel {
stage('Simulator and unit tests') {
agent {
label 'x86_64 && linux'
}
steps {
dir("${REPO}") {
checkout_shallow()
clone_test_deps()
withTools(params.TOOLS_VERSION) {
dir("tests") {
createVenv(reqFile: "requirements.txt")
withVenv {
// Cross-product of all parameters in test_i2s_loopback produces invalid configs
// which cannot be built. They are skipped in pytest, but the build failures
// prevent all the XEs being built before running pytest.
dir("xua_sim_tests") {
sh 'cmake -G "Unix Makefiles" -B build'
// XEs for MIDI tests are shared, so need to be built first
sh 'xmake -C build test_midi_loopback test_midi_xs2 test_midi_xs3'
sh "pytest -v -n auto --junitxml=pytest_sim.xml"
}
dir("xua_unit_tests") {
sh "cmake -G 'Unix Makefiles' -B build"
sh 'xmake -C build -j 16'
sh "pytest -v -n auto --junitxml=pytest_unit.xml"
}
}
}
}
}
}
post {
always {
junit "${REPO}/tests/**/pytest_*.xml"
}
cleanup {
xcoreCleanSandbox()
}
}
} // Simulator and unit tests
stage('MacOS HW tests') {
agent {
label 'macos && arm64 && usb_audio && xcore.ai-mcab'
}
steps {
println "Stage running on ${env.NODE_NAME}"
clone_test_deps()
dir("${REPO}") {
checkout_shallow()
}
dir("hardware_test_tools/xmosdfu") {
unstash "macos_xmosdfu"
}
dir("${REPO}/tests") {
createVenv(reqFile: "requirements.txt")
withTools(params.TOOLS_VERSION) {
dir("xua_hw_tests") {
sh "cmake -G 'Unix Makefiles' -B build"
sh "xmake -C build -j 8"
withVenv {
withXTAG(["usb_audio_mc_xcai_dut"]) { xtagIds ->
sh "pytest -v --junitxml=pytest_hw_mac.xml --xtag-id=${xtagIds[0]}"
}
}
}
}
}
}
post {
always {
junit "${REPO}/tests/xua_hw_tests/pytest_hw_mac.xml"
}
cleanup {
xcoreCleanSandbox()
}
}
} // MacOS HW tests
stage('Windows HW tests') {
agent {
label 'windows11 && usb_audio && xcore.ai-mcab'
}
steps {
println "Stage running on ${env.NODE_NAME}"
clone_test_deps()
dir("${REPO}") {
checkout_shallow()
}
dir("${REPO}/tests") {
createVenv(reqFile: "requirements.txt")
withTools(params.TOOLS_VERSION) {
dir("xua_hw_tests") {
sh "cmake -G 'Unix Makefiles' -B build"
sh "xmake -C build"
withVenv {
withXTAG(["usb_audio_mc_xcai_dut"]) { xtagIds ->
sh "pytest -v --junitxml=pytest_hw_win.xml --xtag-id=${xtagIds[0]}"
}
}
}
}
}
}
post {
always {
junit "${REPO}/tests/xua_hw_tests/pytest_hw_win.xml"
}
cleanup {
xcoreCleanSandbox()
}
}
} // Windows HW tests
}
} // Testing
}
}