Fdomf/c++docs (#1947)

* Updated documentation and improvements

* Added doxygen to jenkins pipeline
This commit is contained in:
Francesc Domene 2019-07-30 15:17:09 +02:00 committed by Marc Garcia Puig
parent a91f0da4b4
commit d70f5e19fd
2 changed files with 18 additions and 0 deletions

View File

@ -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

14
Jenkinsfile vendored
View File

@ -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 {