eigen_gen_docs 738 B

123456789101112131415161718192021222324
  1. #!/bin/sh
  2. # configuration
  3. # You should call this script with USER set as you want, else some default
  4. # will be used
  5. USER=${USER:-'orzel'}
  6. UPLOAD_DIR=dox-devel
  7. #ulimit -v 1024000
  8. # step 1 : build
  9. rm build/doc/html -Rf
  10. mkdir build -p
  11. (cd build && cmake .. && make doc) || { echo "make failed"; exit 1; }
  12. #step 2 : upload
  13. # (the '/' at the end of path is very important, see rsync documentation)
  14. rsync -az --no-p --delete build/doc/html/ $USER@ssh.tuxfamily.org:eigen/eigen.tuxfamily.org-web/htdocs/$UPLOAD_DIR/ || { echo "upload failed"; exit 1; }
  15. #step 3 : fix the perm
  16. ssh $USER@ssh.tuxfamily.org "chmod -R g+w /home/eigen/eigen.tuxfamily.org-web/htdocs/$UPLOAD_DIR" || { echo "perm failed"; exit 1; }
  17. echo "Uploaded successfully"