mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-22 01:20:34 +08:00
doxygen cmake and Jenkins support
This commit is contained in:
Vendored
+27
@@ -106,6 +106,33 @@ pipeline {
|
||||
}
|
||||
}
|
||||
|
||||
stage('doxygen') {
|
||||
agent {
|
||||
docker {
|
||||
image 'px4io/px4-dev-base:2018-03-30'
|
||||
args '-v ${CCACHE_DIR}:${CCACHE_DIR}:rw'
|
||||
}
|
||||
}
|
||||
steps {
|
||||
sh 'export'
|
||||
sh 'ccache -z'
|
||||
sh 'make distclean'
|
||||
//sh 'make doxygen'
|
||||
sh 'ccache -s'
|
||||
// publish html
|
||||
publishHTML target: [
|
||||
reportTitles: 'Doxygen',
|
||||
allowMissing: true,
|
||||
alwaysLinkToLastBuild: true,
|
||||
keepAll: true,
|
||||
reportDir: 'build/doxygen/Documentation',
|
||||
reportFiles: '*',
|
||||
reportName: 'doxygen'
|
||||
]
|
||||
sh 'make distclean'
|
||||
}
|
||||
}
|
||||
|
||||
} // parallel
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user