You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
685 B

  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. #ulimit -v 1024000
  7. # step 1 : build
  8. mkdir build -p
  9. (cd build && cmake .. && make doc) || { echo "make failed"; exit 1; }
  10. #step 2 : upload
  11. # (the '/' at the end of path is very important, see rsync documentation)
  12. rsync -az --no-p --delete build/doc/html/ $USER@ssh.tuxfamily.org:eigen/eigen.tuxfamily.org-web/htdocs/dox/ || { echo "upload failed"; exit 1; }
  13. #step 3 : fix the perm
  14. ssh $USER@ssh.tuxfamily.org 'chmod -R g+w /home/eigen/eigen.tuxfamily.org-web/htdocs/dox-devel' || { echo "perm failed"; exit 1; }
  15. echo "Uploaded successfully"