2009-08-15 07:07:01 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2009-08-15 09:36:37 +08:00
|
|
|
# configuration
|
2009-10-04 09:35:02 +08:00
|
|
|
# You should call this script with USER set as you want, else some default
|
|
|
|
# will be used
|
|
|
|
USER=${USER:-'orzel'}
|
2013-10-18 18:56:15 +08:00
|
|
|
UPLOAD_DIR=dox-devel
|
2009-08-15 07:07:01 +08:00
|
|
|
|
2011-04-19 23:41:59 +08:00
|
|
|
#ulimit -v 1024000
|
|
|
|
|
2009-10-04 09:35:02 +08:00
|
|
|
# step 1 : build
|
2013-03-20 02:18:14 +08:00
|
|
|
rm build/doc/html -Rf
|
2011-04-19 23:41:59 +08:00
|
|
|
mkdir build -p
|
|
|
|
(cd build && cmake .. && make doc) || { echo "make failed"; exit 1; }
|
2009-08-15 07:07:01 +08:00
|
|
|
|
2009-10-04 09:35:02 +08:00
|
|
|
#step 2 : upload
|
2011-12-03 18:18:20 +08:00
|
|
|
# (the '/' at the end of path is very important, see rsync documentation)
|
2013-10-18 18:56:15 +08:00
|
|
|
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; }
|
2009-08-15 07:07:01 +08:00
|
|
|
|
2011-12-03 18:18:20 +08:00
|
|
|
#step 3 : fix the perm
|
2013-10-18 18:56:15 +08:00
|
|
|
ssh $USER@ssh.tuxfamily.org "chmod -R g+w /home/eigen/eigen.tuxfamily.org-web/htdocs/$UPLOAD_DIR" || { echo "perm failed"; exit 1; }
|
2011-12-03 18:18:20 +08:00
|
|
|
|
2010-01-23 02:26:29 +08:00
|
|
|
echo "Uploaded successfully"
|
2009-08-15 07:07:01 +08:00
|
|
|
|