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