forked from frankaemika/libfranka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
73 lines (63 loc) · 2.13 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
#!groovy
buildResult = 'NOT_BUILT'
def getStages(ubuntuVersion) {
return {
node('docker') {
try {
checkout scm
docker.build("libfranka-ci-worker:${ubuntuVersion}",
"-f .ci/Dockerfile.${ubuntuVersion} .ci")
.inside('--cap-add SYS_PTRACE -e MAKEFLAGS') {
stage("${ubuntuVersion}: Build (Debug)") {
sh '.ci/debug.sh'
junit 'build-debug/test_results/*.xml'
}
stage("${ubuntuVersion}: Build (Release)") {
sh '.ci/release.sh'
// Can't use dir() for these shell scripts due to JENKINS-33510
sh "cd ${env.WORKSPACE}/build-release/doc && tar cfz ../libfranka-docs.tar.gz html"
sh "cd ${env.WORKSPACE}/build-release && rename -e 's/(.tar.gz|.deb)\$/-${ubuntuVersion}\$1/' *.deb *.tar.gz"
dir('build-release') {
archive '*.deb, *.tar.gz'
publishHTML([allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'doc/html',
reportFiles: 'index.html',
reportName: "API Documentation (${ubuntuVersion})"])
}
}
stage("${ubuntuVersion}: Build (Coverage)") {
sh '.ci/coverage.sh'
publishHTML([allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'build-coverage/coverage',
reportFiles: 'index.html',
reportName: "Code Coverage (${ubuntuVersion})"])
}
stage("${ubuntuVersion}: Lint") {
sh '.ci/lint.sh'
}
}
if (buildResult != 'FAILED') {
buildResult = 'SUCCESS'
}
} catch (e) {
println(e)
buildResult = 'FAILED'
}
}
}
}
node {
step([$class: 'StashNotifier'])
}
parallel(
'xenial': getStages('xenial'),
'bionic': getStages('bionic'),
)
node {
currentBuild.result = buildResult
step([$class: 'StashNotifier'])
}