.deployDoxygen.sh 850 B

12345678910111213141516171819202122232425262728
  1. #!/bin/bash
  2. #
  3. # This sciprt is run by travis-ci and pushes generated
  4. # Doxygen docs to open62541-www
  5. #
  6. git fetch origin coverity_scan
  7. COMMITS=`git log --oneline --since=today.midnight | wc -l`
  8. if [[ "$COMMITS" -le "1" ]]; then
  9. git clone --depth=50 -b gh-pages https://$GITAUTH@github.com/acplt/open62541-www
  10. cd open62541-www
  11. git rm -rf doc
  12. cp -r ../build/doc ./
  13. git add -A doc/*
  14. cp ../build/open62541.* ./
  15. git add open62541.*
  16. git config --global user.email "open62541-travis-ci@users.noreply.github.com"
  17. git config --global user.name "Open62541 travis-ci"
  18. git config --global push.default simple
  19. git commit -am "doxygen updated by travis-ci"
  20. git push https://$GITAUTH@github.com/acplt/open62541-www
  21. cd ..
  22. rm -rf open62541-www
  23. else
  24. echo "Not the first commit of the day - no doxygen update required"
  25. fi