Fdomf/c++docs (#1947)
* Updated documentation and improvements * Added doxygen to jenkins pipeline
This commit is contained in:
parent
a91f0da4b4
commit
d70f5e19fd
|
@ -1,3 +1,7 @@
|
|||
## Latest
|
||||
* Added Doxygen documentation online with automatic updates through Jenkins pipeline
|
||||
|
||||
|
||||
## CARLA 0.9.6
|
||||
|
||||
* Upgraded to Unreal Engine 4.22
|
||||
|
|
|
@ -81,6 +81,20 @@ pipeline {
|
|||
sh 'make deploy ARGS="--replace-latest --docker-push"'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Doxygen') {
|
||||
when { anyOf { branch "master"; buildingTag() } }
|
||||
steps {
|
||||
sh 'make docs'
|
||||
sh 'rm -rf ~/carla-simulator.github.io/Doxygen'
|
||||
sh 'cp -rf ./Doxygen ~/carla-simulator.github.io/'
|
||||
sh 'cd ~/carla-simulator.github.io && \
|
||||
git pull && \
|
||||
git add Doxygen && \
|
||||
git commit -m "Updated c++ docs" || true && \
|
||||
git push'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
post {
|
||||
|
|
Loading…
Reference in New Issue