This repository was archived by the owner on Feb 11, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathJenkinsfile
More file actions
385 lines (370 loc) · 15.4 KB
/
Copy pathJenkinsfile
File metadata and controls
385 lines (370 loc) · 15.4 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
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
// Utility function for getting the real branch name even in a pull request
def branchName() {
if (env.CHANGE_BRANCH) {
return env.CHANGE_BRANCH
} else {
return env.BRANCH_NAME
}
}
// Utility function for checking out the repo since we want all the branches and tags
def checkoutRepo() {
// Clean the workspace
cleanWs()
// Handles both PRs and branches
script {
BRANCH_NAME_REAL = branchName();
}
// Checkout the code from github
checkout([ $class: 'GitSCM',
branches: [
[name: 'refs/heads/' + BRANCH_NAME_REAL]
],
userRemoteConfigs: [[credentialsId: 'Github_User_And_Token', url: 'https://github.com/LORD-MicroStrain/mip_sdk.git']],
extensions: [
]
])
// Set the branch name
env.setProperty('BRANCH_NAME', branchName())
}
// Utility function to build the MIP SDK on linux
// This function requires BUILD_OS and BUILD_ARCH to have been set in the environment before it is called
def buildMipSdkLinux() {
// Build the docker image
sh '''
./.devcontainer/docker_build_image.sh --os ${BUILD_OS} --arch ${BUILD_ARCH}
'''
// Build the MIP packages
sh '''
./.devcontainer/docker_shell.sh --os ${BUILD_OS} --arch ${BUILD_ARCH} " \
cmake \
-B build_${BUILD_OS}_${BUILD_ARCH} \
-DMICROSTRAIN_BUILD_EXAMPLES=ON \
-DMICROSTRAIN_BUILD_PACKAGE=ON \
-DMICROSTRAIN_BUILD_TESTS=ON \
-DCMAKE_BUILD_TYPE=RELEASE; \
cmake \
--build build_${BUILD_OS}_${BUILD_ARCH} \
--target package \
--parallel $(nproc);
"
'''
// Run the tests
sh '''
./.devcontainer/docker_shell.sh --os ${BUILD_OS} --arch ${BUILD_ARCH} " \
ctest \
--test-dir build_${BUILD_OS}_${BUILD_ARCH} \
-C Release \
--verbose \
--output-on-failure \
--output-junit unit_test_results.xml \
--parallel $(nproc);
"
'''
// Archive the artifacts and save the unit test results
dir("build_${BUILD_OS}_${BUILD_ARCH}") {
archiveArtifacts artifacts: "mipsdk_*"
junit testResults: "unit_test_results.xml", allowEmptyResults: false
}
}
// Utility function to build the MIP SDK on windows
// This functions requires BUILD_ARCH to have been set in the environment before it is called
def buildMipSdkWindows() {
// Build the MIP packages
powershell """
cmake `
-B "build_${BUILD_ARCH}" `
-A "${BUILD_ARCH}" `
-DMICROSTRAIN_BUILD_EXAMPLES=ON `
-DMICROSTRAIN_BUILD_PACKAGE=ON `
-DMICROSTRAIN_BUILD_TESTS=ON
cmake `
--build "build_${BUILD_ARCH}" `
--config Release `
--parallel \$env:NUMBER_OF_PROCESSORS `
--target package
"""
// Run the tests
powershell """
ctest `
--test-dir "build_${BUILD_ARCH}" `
-C Release `
--verbose `
--output-on-failure `
--output-junit unit_test_results.xml `
--parallel \$env:NUMBER_OF_PROCESSORS
"""
// Archive the artifacts and save the unit test results
dir("build_${BUILD_ARCH}") {
archiveArtifacts artifacts: "mipsdk_*"
junit testResults: "unit_test_results.xml", allowEmptyResults: false
}
}
pipeline {
agent none
options {
// Set a timeout for the whole pipeline. The timer starts when the project is queued
timeout(time: 1, unit: 'HOURS')
// Only keep this number of builds for the job
buildDiscarder(logRotator(numToKeepStr: "10"))
copyArtifactPermission('*')
}
stages {
stage('Build') {
// Run all the builds in parallel
parallel {
stage('Documentation') {
agent {
label 'linux-amd64'
}
environment {
BUILD_OS = "ubuntu"
BUILD_ARCH = "amd64"
}
options {
skipDefaultCheckout()
timeout(time: 5, activity: true, unit: 'MINUTES')
}
steps {
script {
checkoutRepo()
// Build the docker image
sh '''
./.devcontainer/docker_build_image.sh --os ${BUILD_OS} --arch ${BUILD_ARCH}
'''
// Build the documentation
sh '''
./.devcontainer/docker_shell.sh --os ${BUILD_OS} --arch ${BUILD_ARCH} " \
cmake \
-B build_docs \
-DMICROSTRAIN_BUILD_DOCUMENTATION=ON \
-DMICROSTRAIN_BUILD_DOCUMENTATION_QUIET=OFF \
-DCMAKE_BUILD_TYPE=RELEASE; \
cmake \
--build build_docs \
--target package_docs \
--parallel $(nproc)
"
'''
archiveArtifacts artifacts: "build_docs/mipsdk_*"
}
}
}
stage('Windows x86') {
agent {
label 'windows10'
}
environment {
BUILD_ARCH = "Win32"
}
options {
skipDefaultCheckout()
timeout(time: 5, activity: true, unit: 'MINUTES')
}
steps {
script {
checkoutRepo()
buildMipSdkWindows()
}
}
}
stage('Windows x64') {
agent {
label 'windows10'
}
environment {
BUILD_ARCH = "x64"
}
options {
skipDefaultCheckout()
timeout(time: 5, activity: true, unit: 'MINUTES')
}
steps {
script {
checkoutRepo()
buildMipSdkWindows()
}
}
}
stage('Ubuntu amd64') {
agent {
label 'linux-amd64'
}
environment {
BUILD_OS = "ubuntu"
BUILD_ARCH = "amd64"
}
options {
skipDefaultCheckout()
timeout(time: 5, activity: true, unit: 'MINUTES')
}
steps {
script {
checkoutRepo()
buildMipSdkLinux()
}
}
}
stage('Ubuntu arm64') {
agent {
label 'linux-arm64'
}
environment {
BUILD_OS = "ubuntu"
BUILD_ARCH = "arm64v8"
}
options {
skipDefaultCheckout()
timeout(time: 5, activity: true, unit: 'MINUTES')
}
steps {
script {
checkoutRepo()
buildMipSdkLinux()
}
}
}
stage('Ubuntu arm32') {
agent {
label 'linux-arm64'
}
environment {
BUILD_OS = "ubuntu"
BUILD_ARCH = "arm32v7"
}
options {
skipDefaultCheckout()
timeout(time: 5, activity: true, unit: 'MINUTES')
}
steps {
script {
checkoutRepo()
buildMipSdkLinux()
}
}
}
// stage("Mac M2") {
// agent {
// label 'mac-m2'
// }
// environment {
// BUILD_OS = "mac"
// BUILD_ARCH = "arm64"
// }
// options {
// skipDefaultCheckout()
// timeout(time: 5, activity: true, unit: 'MINUTES')
// }
// steps {
// script {
// checkoutRepo()
// dir("build_${BUILD_OS}_${BUILD_ARCH}") {
// sh '''
// cmake .. `
// -DMICROSTRAIN_BUILD_EXAMPLES=ON `
// -DMICROSTRAIN_BUILD_PACKAGE=ON `
// -DMICROSTRAIN_BUILD_TESTS=ON
// cmake --build . --parallel $(sysctl -n hw.ncpu)
// cmake --build . --parallel $(sysctl -n hw.ncpu) --target package
// '''
// archiveArtifacts artifacts: "mipsdk_*"
// sh '''
// ctest `
// -C Release `
// --verbose `
// --output-on-failure `
// --output-junit unit_test_results.xml `
// --parallel $(sysctl -n hw.ncpu)
// '''
// junit testResults: "unit_test_results.xml", allowEmptyResults: false
// }
// }
// }
// }
// stage("Mac Intel") {
// agent {
// label 'mac-intel'
// }
// environment {
// BUILD_OS = "mac"
// BUILD_ARCH = "intel"
// }
// options {
// skipDefaultCheckout()
// timeout(time: 5, activity: true, unit: 'MINUTES')
// }
// steps {
// script {
// checkoutRepo()
// dir("build_${BUILD_OS}_${BUILD_ARCH}") {
// sh '''
// cmake .. `
// -DMICROSTRAIN_BUILD_EXAMPLES=ON `
// -DMICROSTRAIN_BUILD_PACKAGE=ON `
// -DMICROSTRAIN_BUILD_TESTS=ON
// cmake --build . --parallel $(sysctl -n hw.ncpu)
// cmake --build . --parallel $(sysctl -n hw.ncpu) --target package
// '''
// archiveArtifacts artifacts: "mipsdk_*"
// sh '''
// ctest `
// -C Release `
// --verbose `
// --output-on-failure `
// --output-junit unit_test_results.xml `
// --parallel $(sysctl -n hw.ncpu)
// '''
// junit testResults: "unit_test_results.xml", allowEmptyResults: false
// }
// }
// }
// }
}
}
}
post {
success {
script {
if (BRANCH_NAME && BRANCH_NAME == 'develop') {
node("linux-amd64") {
dir("/tmp/mip_sdk_${env.BRANCH_NAME}_${currentBuild.number}") {
copyArtifacts(projectName: "${env.JOB_NAME}", selector: specific("${currentBuild.number}"));
withCredentials([string(credentialsId: 'Github_Token', variable: 'GH_TOKEN')]) {
sh '''
# Release to github
"${WORKSPACE}/scripts/release.sh" \
--artifacts "$(find "$(pwd)" -type f)" \
--target "${BRANCH_NAME}" \
--release "latest" \
--docs-zip "$(find "$(pwd)" -type f -name "mipsdk_*_Documentation.zip" | sort | uniq)" \
--generate-notes
'''
}
}
}
}
else if (BRANCH_NAME && BRANCH_NAME == 'master') {
node("linux-amd64") {
dir("/tmp/mip_sdk_${env.BRANCH_NAME}_${currentBuild.number}") {
copyArtifacts(projectName: "${env.JOB_NAME}", selector: specific("${currentBuild.number}"));
withCredentials([string(credentialsId: 'Github_Token', variable: 'GH_TOKEN')]) {
sh '''
# Release to the latest version if the master commit matches up with the commit of that version
if (cd "${WORKSPACE}" && git describe --exact-match --match "v*" --tags HEAD &> /dev/null); then
# Release to github
"${WORKSPACE}/scripts/release.sh" \
--artifacts "$(find "$(pwd)" -type f)" \
--target "${BRANCH_NAME}" \
--release "$(cd ${WORKSPACE} && git describe --exact-match --match "v*" --tags HEAD)" \
--docs-zip "$(find "$(pwd)" -type f -name "mipsdk_*_Documentation.zip" | sort | uniq)"
else
echo "Not releasing from ${BRANCH_NAME} since the current commit does not match the latest released version commit"
fi
'''
}
}
}
}
}
}
}
}