Jenkins: fetch all tags before generating Airframe & Parameter documentation (master only)

This commit is contained in:
Daniel Agar 2021-04-05 09:51:16 -04:00
parent 2e390009f0
commit 186e987efb
1 changed files with 2 additions and 0 deletions

2
Jenkinsfile vendored
View File

@ -89,6 +89,7 @@ pipeline {
}
steps {
sh 'make distclean'
sh 'git fetch --all --tags'
sh 'make airframe_metadata'
dir('build/px4_sitl_default/docs') {
archiveArtifacts(artifacts: 'airframes.md, airframes.xml')
@ -108,6 +109,7 @@ pipeline {
}
steps {
sh 'make distclean'
sh 'git fetch --all --tags'
sh 'make parameters_metadata'
dir('build/px4_sitl_default/docs') {
archiveArtifacts(artifacts: 'parameters.md, parameters.xml, parameters.json.xz')