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