forked from ARMmbed/mbed-os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
279 lines (268 loc) · 9.77 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
echo "Start to build"
properties ([
buildDiscarder(
logRotator(
artifactNumToKeepStr: '10',
numToKeepStr: '100'
)
)
])
// List of targets to compile
def morpheusTargets = [
//"LPC1768",
//"NUCLEO_F401RE",
"K64F"
]
// Map morpheus toolchains to compiler labels on Jenkins
def toolchains = [
ARM: "armcc",
IAR: "iar_arm",
GCC_ARM: "arm-none-eabi-gcc"
]
// yotta target includes toolchain
def yottaTargets = [
"frdm-k64f-gcc": "gcc",
"frdm-k64f-armcc": "armcc",
"stm32f429i-disco-gcc": "gcc",
"x86-linux-native": "linux && astyle"
]
// Initial maps for parallel build steps
def stepsForParallel = [:]
// Jenkins pipeline does not support map.each, we need to use oldschool for loop
for (int i = 0; i < morpheusTargets.size(); i++) {
for(int j = 0; j < toolchains.size(); j++) {
def target = morpheusTargets.get(i)
def toolchain = toolchains.keySet().asList().get(j)
def compilerLabel = toolchains.get(toolchain)
def stepName = "mbed-os5-${target} ${toolchain}"
stepsForParallel[stepName] = morpheusBuildStep(target, compilerLabel, toolchain)
}
}
// map yotta steps
for (int i = 0; i < yottaTargets.size(); i++) {
def target = yottaTargets.keySet().asList().get(i)
def compilerLabel = yottaTargets.get(target)
def stepName = "mbed-os3-${target}"
stepsForParallel[stepName] = yottaBuildStep(target, compilerLabel)
}
/* Jenkins does not allow stages inside parallel execution,
* https://issues.jenkins-ci.org/browse/JENKINS-26107 will solve this by adding labeled blocks
*/
// Actually run the steps in parallel - parallel takes a map as an argument, hence the above.
timestamps {
timeout(time: 30, unit: "MINUTES") {
parallel stepsForParallel
}
}
def execute(cmd) {
if(isUnix()) {
sh "${cmd}"
} else {
bat "${cmd}"
}
}
//Create morpheus build steps for parallel execution
def morpheusBuildStep(target, compilerLabel, toolchain) {
return {
node ("${compilerLabel}") {
deleteDir()
dir("mbed-trace") {
String buildName = "mbed-os5-${target}-${toolchain}"
def scmVars = checkout scm
env.GIT_COMMIT_HASH = scmVars.GIT_COMMIT
setBuildStatus('PENDING', "build ${buildName}", 'build starts')
stage ("build:${buildName}") {
try{
execute("mbed --version")
execute("echo https://github.com/armmbed/mbed-os/#6a0a86538c0b9b2bfcc4583b1e2b7fea8f4e71e9 > mbed-os.lib")
execute("mbed deploy")
execute("rm -rf ./mbed-os/platform/mbed-trace")
execute("mbed compile -m ${target} -t ${toolchain} --library")
setBuildStatus('SUCCESS', "build ${buildName}", "build done")
} catch (err) {
echo "Caught exception: ${err}"
setBuildStatus('FAILURE', "build ${buildName}", "build failed")
throw err
}
}
stage("build:example:${buildName}") {
execute("mkdir ../example-mbed-os-5 || true")
execute("cp -R example/mbed-os-5 ../example-mbed-os-5")
dir("../example-mbed-os-5") {
def exampleName = "example-${buildName}"
setBuildStatus('PENDING', "build ${exampleName}", 'build starts')
try {
execute("echo \"https://github.com/ARMmbed/mbed-os/#6a0a86538c0b9b2bfcc4583b1e2b7fea8f4e71e9\" > mbed-os.lib")
execute("echo \"https://github.com/ARMmbed/mbed-trace#${env.GIT_COMMIT_HASH}\" > mbed-trace.lib")
execute("mbed new .")
execute("mbed deploy")
execute("rm -rf ./mbed-os/platform/mbed-trace")
execute("rm -rf ./mbed-trace/example")
execute("rm -rf ./mbed-trace/test")
execute("mbed compile -t ${toolchain} -m ${target}")
setBuildStatus('SUCCESS', "build ${exampleName}", "build done")
} catch(err) {
echo "Caught exception: ${err}"
setBuildStatus('FAILURE', "build ${exampleName}", "build failed")
currentBuild.result = 'FAILURE'
} finally {
// clean up
postBuild(buildName, false)
step([$class: 'WsCleanup'])
}
}
}
}
}
}
}
//Create yotta build steps for parallel execution
def yottaBuildStep(target, compilerLabel) {
return {
String buildName = "mbed-os3-${target}"
node ("${compilerLabel}") {
deleteDir()
dir("mbed-trace") {
def scmVars = checkout scm
env.GIT_COMMIT_HASH = scmVars.GIT_COMMIT
def isTest = target == "x86-linux-native" // tests are valid only in linux target
stage ("build:${buildName}") {
setBuildStatus('PENDING', "build ${buildName}", 'build starts')
try{
execute("yotta --version")
execute("yotta target $target")
execute("yotta --plain build mbed-trace")
setBuildStatus('SUCCESS', "build ${buildName}", "build done")
} catch (err) {
echo "Caught exception: ${err}"
setBuildStatus('FAILURE', "build ${buildName}", "build failed")
currentBuild.result = 'FAILURE'
}
} // stage
if (isTest) {
stage("test:${buildName}") {
setBuildStatus('PENDING', "test ${buildName}", 'test starts')
try {
execute("yotta test mbed_trace_test")
execute("lcov --base-directory . --directory . --capture --output-file coverage.info")
execute("genhtml -o ./test_coverage coverage.info")
execute("gcovr -x -o junit.xml")
execute("cppcheck --enable=all --std=c99 --inline-suppr --template=\"{file},{line},{severity},{id},{message}\" source 2> cppcheck.txt")
// check if astyle is correct
execute("astyle --options=.astylerc source/*.c mbed-trace/*.h")
// check differency
execute("git diff-index -p --exit-code HEAD")
setBuildStatus('SUCCESS', "test ${buildName}", "test done")
} catch(err) {
echo "Caught exception: ${err}"
setBuildStatus('FAILURE', "test ${buildName}", "test failed")
currentBuild.result = 'FAILURE'
}
} // stage
stage("example:${buildName}") {
dir("example/linux") {
def exampleName = "example-linux"
setBuildStatus('PENDING', "build ${exampleName}", 'build starts')
try {
execute("make")
setBuildStatus('SUCCESS', "build ${exampleName}", "build done")
} catch(err) {
echo "Caught exception: ${err}"
setBuildStatus('FAILURE', "build ${exampleName}", "build failed")
currentBuild.result = 'FAILURE'
}
}
} // stage
stage("leak-check:${buildName}") {
dir("example/linux") {
def stageName = "leak-check"
setBuildStatus('PENDING', "test ${stageName}", 'test starts')
try {
execute("./memtest.sh")
setBuildStatus('SUCCESS', "test ${stageName}", "test done")
} catch(err) {
echo "Caught exception: ${err}"
setBuildStatus('FAILURE', "test ${stageName}", "test failed")
currentBuild.result = 'FAILURE'
}
}
} // stage
} // if linux
postBuild(buildName, isTest)
step([$class: 'WsCleanup'])
} // dir
}
}
}
def postBuild(buildName, isTest) {
// move files to target+toolchain specific folder
execute("mkdir -p output/${buildName}")
execute("find . -name 'libmbed-trace.a' -exec mv {} 'output/${buildName}' \\;")
execute("find . -name 'mbed-trace.ar' -exec mv {} 'output/${buildName}' \\;")
execute("find ../example-mbed-os-5 -name 'example-mbed-os-5.bin' -exec mv {} 'output/${buildName}/example-mbed-os-5.bin' \\; || true")
// Archive artifacts
step([
$class: 'ArtifactArchiver',
artifacts: "cppcheck.txt,output/**",
fingerprint: true,
allowEmptyArchive: true
])
if (isTest) {
// Publish cobertura
step([
$class: 'CoberturaPublisher',
coberturaReportFile: 'junit.xml'
])
// Publish compiler warnings
step([
$class: 'WarningsPublisher',
parserConfigurations: [[
parserName: 'GNU Make + GNU C Compiler (gcc)',
pattern: 'mbed-trace/*.h,source/*.c,test/*.cpp'
]],
unstableTotalAll: '0',
useDeltaValues: true,
usePreviousBuildAsReference: true
])
// Publish HTML reports
publishHTML(target: [
alwayLinkToLastBuild: false,
keepAll: true,
reportDir: "test_coverage",
reportFiles: "index.html",
reportName: "Build HTML Report"
])
}
}
// helper function to set build status to github PR
def setBuildStatus(String state, String context, String message) {
step([
$class: "GitHubCommitStatusSetter",
reposSource: [
$class: "ManuallyEnteredRepositorySource",
url: "https://github.com/ARMmbed/mbed-trace.git"
],
contextSource: [
$class: "ManuallyEnteredCommitContextSource",
context: context
],
errorHandlers: [[
$class: "ChangingBuildStatusErrorHandler",
result: "UNSTABLE"
]],
commitShaSource: [
$class: "ManuallyEnteredShaSource",
sha: env.GIT_COMMIT_HASH
],
statusResultSource: [
$class: 'ConditionalStatusResultSource',
results: [
[
$class: 'AnyBuildResult',
message: message,
state: state
]
]
]
])
}