forked from MIT-SPARK/Kimera-VIO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
220 lines (208 loc) · 9.35 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
/* Jenkinsfile for Jenkins running in a server using docker.
* THIS IS ONLY MEANT TO BE RUN ON THE SERVER HAVING JENKINS.
* Run the following command to mount EUROC dataset and be able to run VIO evaluation on it:
* sudo docker run -it -u root --rm -d -p 8080:8080 -p 50000:50000 -v /home/sparklab/Datasets/euroc:/Datasets/euroc -v \
jenkins-data:/var/jenkins_home -v /var/run/docker.sock:/var/run/docker.sock \
--env JAVA_OPTS="-Dhudson.model.DirectoryBrowserSupport.CSP=\"default-src 'self'; script-src * 'unsafe-eval' 'unsafe-inline'; img-src \
'self'; style-src * 'unsafe-inline'; child-src 'self'; frame-src 'self'; object-src 'self';\"" \
jenkinsci/blueocean
* Periodically backup: `docker cp <jenkins-container-name>:/var/jenkins_home ./jenkins_home`
* Also, you might need to clean disk space, run (WARNING will wipe up everything unless jenkins already runs):
* `docker system prune -a` while running jenkins (but stop all jobs).
* If you want to enable HTML reports in Jenkins, further call:
* System.setProperty("hudson.model.DirectoryBrowserSupport.CSP", "default-src 'self'; script-src * 'unsafe-eval' 'unsafe-inline'; img-src 'self'; style-src * 'unsafe-inline'; child-src 'self'; frame-src 'self'; object-src 'self';")
* in the Script console in Jenkins' administration section.
* TODO(Toni): change all Kimera-VIO-Evaluation/website/data into a Groovy String.
*/
pipeline {
agent none
stages {
stage('Build and Test on Ubuntu') {
parallel {
stage('Ubuntu 18.04') {
agent {
dockerfile {
filename 'Dockerfile_18_04'
args '-e WORKSPACE=$WORKSPACE'
}
}
environment {
evaluator="/root/Kimera-VIO-Evaluation"
}
stages {
stage('Build Release') {
steps {
cmakeBuild buildDir: 'build', buildType: 'Release', cleanBuild: false,
cmakeArgs: '-DEIGEN3_INCLUDE_DIR="/usr/local/include/gtsam/3rdparty/Eigen"\
-DCMAKE_CXX_FLAGS="\
-Wno-comment \
-Wno-maybe-uninitialized \
-Wno-parentheses \
-Wno-pragma-once-outside-header \
-Wno-reorder \
-Wno-return-type \
-Wno-sign-compare \
-Wno-unused-but-set-variable \
-Wno-unused-function \
-Wno-unused-parameter \
-Wno-unused-value \
-Wno-unused-variable"',
generator: 'Unix Makefiles', installation: 'InSearchPath',
sourceDir: '.', steps: [[args: '-j 4']]
}
}
stage('Test') {
steps {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
wrap([$class: 'Xvfb']) {
sh 'cd build && ./testKimeraVIO --gtest_output="xml:testresults.xml"'
// Process the CTest xml output
junit 'build/testresults.xml'
}
}
}
}
stage('Euroc Performance') {
steps {
wrap([$class: 'Xvfb']) {
// Run performance tests.
// In jenkins_euroc.yaml, set output path to $WORKSPACE/website/data
// 1. Configure evo plotting: all plots in plots.pdf
sh 'evo_config set plot_export_format pdf'
sh 'evo_config set plot_split false'
// 2. Run evaluation
sh 'python3.6 $evaluator/evaluation/main_evaluation.py -r -a -v \
--save_plots --save_boxplots --save_results --write_website \
$evaluator/experiments/jenkins_euroc.yaml'
// 3. Compile summary results.
sh 'python3.6 $evaluator/evaluation/tools/performance_summary.py \
$WORKSPACE/website/data/V1_01_easy/Euroc/results_vio.yaml \
$WORKSPACE/website/data/V1_01_easy/Euroc/vio_performance.csv'
}
}
post {
success {
// Plot VIO performance.
plot csvFileName: 'plot-vio-performance-per-build.csv',
csvSeries: [[file: 'website/data/V1_01_easy/Euroc/vio_performance.csv']],
group: 'Euroc Performance',
numBuilds: '30',
style: 'line',
title: 'VIO Performance',
yaxis: 'ATE [m]'
// Plot VIO timing.
plot csvFileName: 'plot-vio-timing-per-build.csv',
csvSeries: [[file: 'website/data/V1_01_easy/Euroc/output_timingOverall.csv']],
group: 'Euroc Performance',
numBuilds: '30',
style: 'line',
title: 'VIO Timing',
yaxis: 'Time [ms]'
// Publish HTML website with plotly and pdfs of VIO performance
publishHTML([allowMissing: true, alwaysLinkToLastBuild: false, keepAll: true, reportDir: 'website/data', reportFiles: 'vio_ape_euroc.html, detailed_performance.html, datasets.html, Frontend.html', reportName: 'VIO Euroc Performance Report', reportTitles: 'Euroc Performance Overview, Euroc Performance Detailed, Raw VIO Output, VIO Frontend Stats'])
// Archive the website
archiveArtifacts (
artifacts: 'website/data/**/*.*',
fingerprint: true
)
// Archive the params used in evaluation (if these are used is determined
// by the experiments yaml file in Kimera-VIO-Evaluation)
archiveArtifacts (
artifacts: 'params/**/*.*',
fingerprint: true
)
}
failure {
node(null) {
echo 'Fail!'
slackSend color: 'danger', message: "Failed - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
}
}
}
}
}
}
stage('Ubuntu 16.04') {
agent {
dockerfile {
filename 'Dockerfile_16_04'
args '-e WORKSPACE=$WORKSPACE'
}
}
stages {
stage('Build Release') {
steps {
slackSend color: 'good',
message: "Started Build <${env.BUILD_URL}|#${env.BUILD_NUMBER}> - Branch <${env.GIT_URL}|${env.GIT_BRANCH}>."
cmakeBuild buildDir: 'build', buildType: 'Release', cleanBuild: false,
cmakeArgs: '-DEIGEN3_INCLUDE_DIR="/usr/local/include/gtsam/3rdparty/Eigen"\
-DCMAKE_CXX_FLAGS="\
-Wno-comment \
-Wno-maybe-uninitialized \
-Wno-parentheses \
-Wno-pragma-once-outside-header \
-Wno-reorder \
-Wno-return-type \
-Wno-sign-compare \
-Wno-unused-but-set-variable \
-Wno-unused-function \
-Wno-unused-parameter \
-Wno-unused-value \
-Wno-unused-variable"',
generator: 'Unix Makefiles', installation: 'InSearchPath',
sourceDir: '.', steps: [[args: '-j 4']]
}
}
stage('Test') {
steps {
wrap([$class: 'Xvfb']) {
sh 'cd build && ./testKimeraVIO --gtest_output="xml:testresults.xml"'
// Process the CTest xml output
junit 'build/testresults.xml'
}
}
}
}
}
}
}
}
post {
always {
node(null) {
echo 'Jenkins Finished'
// Clear the source and build dirs before the next run
// deleteDir()
}
}
success {
node(null) {
echo 'Success!'
slackSend color: 'good',
message: "Successful Build <${env.BUILD_URL}|#${env.BUILD_NUMBER}> - Branch ${env.GIT_BRANCH} finished in ${currentBuild.durationString}."
}
}
failure {
node(null) {
echo 'Fail!'
slackSend color: 'danger', message: "Failed - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
}
}
unstable {
node(null) {
echo 'Unstable!'
slackSend color: 'warning', message: "Unstable - ${env.JOB_NAME} ${env.BUILD_NUMBER} (<${env.BUILD_URL}|Open>)"
}
}
cleanup {
// Clear the source and build dirs before next run
// TODO this might delete the .csv file for plots?
node(null) {
// cleanWs()
}
}
}
options {
buildDiscarder logRotator(artifactDaysToKeepStr: '120', artifactNumToKeepStr: '60', daysToKeepStr: '30', numToKeepStr: '30')
}
}