X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=build.xml;h=e4a4bf894d1bfafb89ada9eba2a913259c8ca9b1;hb=666957fb4f1262db5d0ca67d6f417cc6ebf8eed6;hp=ad6fcea163bf12510e7fc33ff372340c16a932a3;hpb=bcc8b1b4cf4e4801d218151e6a7f9961972d91c1;p=org.ibex.core.git diff --git a/build.xml b/build.xml index ad6fcea..e4a4bf8 100644 --- a/build.xml +++ b/build.xml @@ -1,4 +1,4 @@ - + @@ -7,19 +7,10 @@ - - - - - - - - - @@ -27,186 +18,51 @@ - - find . -name \*\~ | xargs rm -f - find . -name \#\*\# | xargs rm -f - rm -rf bin-* bin xwt/html/dist/ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - + + + + + + - - - + + - - - - - - - - - - - - - - - - - # throw on the prefix/suffix where needed - for A in `find www/html -name \*.html_` - do (cat www/html/prefix.html; cat $A; cat www/html/suffix.html; cat "$A"_ 2>/dev/null; cat www/html/tagline.html) > `echo $A | sed s/_\$//g` - done - - - - - - - - - - - - - - - - - - - - - - - cvs commit -m "automatically updated build-id via org.xwt.tasks.BuildIdTask" build.properties - - - - - - - - - - - - - - /home/megacz/bin/sign/sign ${build-id} - - - - - - - - - - - - - - - - - - - - # first, clone the currently running copy of xwt, so we can use rsync to save bandwidth - rm -rf /xwt-new - mkdir -p /xwt - mkdir -p /xwt-new - cd /xwt - tar cf - . | tar xf - -C /xwt-new - - - - # tidy up and rsync our changes - find www/html -name \*~ | xargs rm -f - rsync -Pv --delete --exclude=html/dist/\* -rze ssh www/ root@${host}:/xwt-new/www/ - rsync -u -Pv -rze ssh www/html/dist/ root@${host}:/xwt-new/www/html/dist/ - - - - # stop services - /sbin/start-stop-daemon --stop --pidfile /var/log/xwt/apache.pid --exec /usr/sbin/apache - /sbin/start-stop-daemon --stop --pidfile /var/log/xwt/tomcat.pid --user www-data - - rm -rf /xwt-old - mv /xwt /xwt-old - mv /xwt-new /xwt - - mkdir /var/log/xwt &>/dev/null - chown www-data /var/log/xwt/ - - ln -s /xwt/www/webapps /xwt/www/webapps/ROOT - ln -s /xwt/www/webapps /xwt/www/webapps/WEB-INF - ln -s /xwt/www/launch /xwt/www/launch/ROOT - ln -s /xwt/www/launch /xwt/www/launch/WEB-INF - - export JAVA_HOME=/usr/lib/j2sdk1.3 - export CLASSPATH=$JAVA_HOME/jre/lib/rt.jar:$JAVA_HOME/lib/tools.jar:/usr/share/tomcat/classes:/usr/share/tomcat/lib/tomcat.jar - - touch /var/log/xwt/tomcat.log - chown www-data /var/log/xwt/tomcat.log - - test ${host} == "xwt-staging.org" && echo -e "User-agent: *\nDisallow: /\n" > /xwt/www/html/robots.txt - - /sbin/start-stop-daemon \ - --start --pidfile /var/log/xwt/tomcat.pid --make-pidfile --chuid www-data --exec \ - /usr/lib/j2sdk1.3/bin/java -- -server -Dtomcat.home=/usr/share/tomcat -Xmx500M \ - org.apache.tomcat.startup.Main -config /xwt/www/etc/server.xml start \ - >> /var/log/xwt/tomcat.log 2>&1 & - - /sbin/start-stop-daemon --start --pidfile /var/log/xwt/apache.pid --exec /usr/sbin/apache -- -f /xwt/www/etc/httpd.conf ${staging-flag} - - - - - - -