forked from frankaemika/libfranka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
52 lines (45 loc) · 1.4 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
#!groovy
node('docker') {
step([$class: 'StashNotifier'])
try {
checkout scm
docker.build('libfranka-ci-worker', '.ci').inside {
stage('Build (Debug)') {
sh '.ci/debug.sh'
junit 'build-debug/test_results/*.xml'
}
stage('Build (Release)') {
sh '.ci/release.sh'
// Can't use dir() for this shell script due to JENKINS-33510
sh "cd ${env.WORKSPACE}/build-release/doc && tar cfz ../libfranka-docs.tar.gz html"
dir('build-release') {
archive '*.deb, *.tar.gz'
publishHTML([allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'doc/html',
reportFiles: 'index.html',
reportName: 'API Documentation'])
}
}
stage('Build (Coverage)') {
sh '.ci/coverage.sh'
publishHTML([allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'build-coverage/coverage',
reportFiles: 'index.html',
reportName: 'Code Coverage'])
}
stage('Lint') {
sh '.ci/lint.sh'
}
}
currentBuild.result = 'SUCCESS'
} catch (e) {
currentBuild.result = 'FAILED'
throw e;
} finally {
step([$class: 'StashNotifier'])
}
}