-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathJenkinsfile
More file actions
355 lines (325 loc) · 10.5 KB
/
Copy pathJenkinsfile
File metadata and controls
355 lines (325 loc) · 10.5 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
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
// This file relates to internal XMOS infrastructure and should be ignored by external users
@Library('xmos_jenkins_shared_library@v0.49.0') _
getApproval()
pipeline {
agent none
parameters {
string(
name: 'TOOLS_VERSION',
defaultValue: '15.3.1',
description: 'The XTC tools version'
)
string(
name: 'XMOSDOC_VERSION',
defaultValue: 'v8.0.1',
description: 'The xmosdoc version')
string(
name: 'INFR_APPS_VERSION',
defaultValue: 'v3.4.0',
description: 'The infr_apps version'
)
choice(
name: 'TEST_LEVEL', choices: ['smoke', 'nightly'],
description: 'The level of test coverage to run')
}
options {
skipDefaultCheckout()
timestamps()
buildDiscarder(xmosDiscardBuildSettings(onlyArtifacts = false))
}
stages {
stage('🏗️ Build and test') {
agent {
label 'documentation && x86_64 && linux'
}
stages {
stage('Checkout') {
steps {
println "Stage running on ${env.NODE_NAME}"
script {
def (server, user, repo) = extractFromScmUrl()
env.REPO_NAME = repo
}
dir(REPO_NAME){
checkoutScmShallow()
}
}
} // stage('Checkout')
stage('Examples build') {
steps {
dir("${REPO_NAME}/examples") {
xcoreBuild()
}
}
}
stage('Repo checks') {
steps {
warnError("Repo checks failed")
{
runRepoChecks("${WORKSPACE}/${REPO_NAME}")
}
}
}
stage('Doc build') {
steps {
dir(REPO_NAME) {
buildDocs()
}
}
}
stage("Archive Lib") {
steps {
archiveSandbox(REPO_NAME)
}
} //stage("Archive Lib")
stage('Build HW tests') {
steps {
dir("${REPO_NAME}/tests/xua_hw_tests") {
xcoreBuild()
stash includes: '**/*.xe', name: 'hw_test_bin', useDefaultExcludes: false
} // dir(REPO_NAME)
} // steps
} // stage('Build tests')
} // stages
post {
cleanup {
xcoreCleanSandbox()
}
}
} // stage '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}"
}
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_NAME) {
checkoutScmShallow()
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_NAME) {
checkoutScmShallow()
// Build examples to pull required dependencies into the sandbox for the host app build.
// This is required to build the xmosdfu dependency which is used in the Mac HW tests.
dir("examples") {
xcoreBuild(archiveBins: false)
}
dir("tests/xua_hw_tests/test_control/host")
{
sh 'cmake -B build'
sh 'make -C build'
stash includes: 'build/host_control_test', name: 'host_control_test_bin_mac_arm', useDefaultExcludes: false
} // dir("${REPO_NAME}/tests/xua_hw_tests/test_control/host")
}
dir("lib_dfu/host/xmosdfu") {
sh 'cmake -B build'
sh 'make -C build'
sh 'mkdir -p OSX/arm64'
sh 'mv bin/xmosdfu OSX/arm64/xmosdfu'
archiveArtifacts artifacts: "OSX/arm64/xmosdfu", fingerprint: true
dir("OSX/arm64") {
stash includes: 'xmosdfu', name: 'macos_xmosdfu'
}
} // dir("lib_dfu/host/xmosdfu")
}
post {
cleanup {
xcoreCleanSandbox()
}
}
} // Build Mac arm host app
stage('Build Windows host app') {
agent {
label 'x86_64&&windows&&usb_audio'
}
steps {
println "Stage running on ${env.NODE_NAME}"
dir(REPO_NAME) {
checkoutScmShallow()
withVS() {
dir("host_usb_mixer_control") {
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
}
dir("tests/xua_hw_tests/test_control/host")
{
bat "cmake -B build -G Ninja"
bat "ninja -C build"
stash includes: 'build/host_control_test.exe', name: 'host_control_test_bin_windows', useDefaultExcludes: false
}
} // withVS()
}
}
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_NAME) {
checkoutScmShallow()
withTools(params.TOOLS_VERSION) {
dir("tests") {
createVenv(reqFile: "requirements.txt")
withVenv {
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") {
xcoreBuild()
runPytest()
}
}
}
}
}
}
post {
always {
junit "${REPO_NAME}/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}"
dir(REPO_NAME) {
checkoutScmShallow()
}
dir("${REPO_NAME}/tests/xua_hw_tests") {
unstash "hw_test_bin" // Unstash HW test DUT binaries
}
dir("${REPO_NAME}/tests/xua_hw_tests/test_control/host")
{
unstash "host_control_test_bin_mac_arm" // Unstash host app for control test
}
dir("${REPO_NAME}/tests") {
createVenv(reqFile: "requirements.txt")
withTools(params.TOOLS_VERSION) {
withVenv {
// Change directory into xmosdfu and unstash
// Note hardcoded path to hardware_test_tools since it's installed as an editable requirement in requirements.txt
dir("${env.VIRTUAL_ENV}/src/hardware-test-tools/xmosdfu") {
unstash "macos_xmosdfu"
}
dir("xua_hw_tests") {
withXTAG(["usb_audio_mc_xcai_dut"]) { xtagIds ->
sh "pytest -v --junitxml=pytest_hw_mac.xml --xtag-id=${xtagIds[0]} --level ${params.TEST_LEVEL}"
}
} // dir("xua_hw_tests")
} // withVenv
} // withTools(params.TOOLS_VERSION)
} // dir("${REPO_NAME}/tests")
} // steps
post {
always {
junit "${REPO_NAME}/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}"
dir(REPO_NAME) {
checkoutScmShallow()
}
dir("${REPO_NAME}/tests/xua_hw_tests") {
unstash "hw_test_bin" // Unstash HW test DUT binaries
}
dir("${REPO_NAME}/tests/xua_hw_tests/test_control/host")
{
unstash "host_control_test_bin_windows" // Unstash host app for control test
}
dir("${REPO_NAME}/tests") {
createVenv(reqFile: "requirements.txt")
withTools(params.TOOLS_VERSION) {
dir("xua_hw_tests") {
withVenv {
withXTAG(["usb_audio_mc_xcai_dut"]) { xtagIds ->
sh "pytest -v --junitxml=pytest_hw_win.xml --xtag-id=${xtagIds[0]} --level ${params.TEST_LEVEL}"
}
}
}
}
}
}
post {
always {
junit "${REPO_NAME}/tests/xua_hw_tests/pytest_hw_win.xml"
}
cleanup {
xcoreCleanSandbox()
}
}
} // Windows HW tests
}
} // stage('Testing')
stage('🚀 Release') {
when {
expression { triggerRelease.isReleasable() }
}
steps {
triggerRelease()
}
}
} // stages
} // pipeline