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