Changes between Version 1 and Version 2 of GROUP_DEPLOYMENT_R1


Ignore:
Timestamp:
08/03/09 16:20:12 (16 years ago)
Author:
pav
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GROUP_DEPLOYMENT_R1

    v1 v2  
    3939 
    4040= Design = 
    41 ^(Describe your design here.)^ 
     41 * Packages: Hudson must be configured to run the package phase with assembly goal and to run batch task, which execute the following script: 
     42 
     43{{{ 
     44#!/bin/bash 
     45TODAY=`date +%Y%m%d%H%M` 
     46cd ./jobs/Sophie\ 2.0\ Distribution/workspace/sophie2/sophie2-platform/target/ 
     47for zip in $(ls *.zip) 
     48do 
     49        zip_file="/var/www/daily_builds/sophie2-`echo $zip | cut -d'-' -f5 | cut -d'.' -f1`-$TODAY.zip" 
     50        cp $zip $zip_file 
     51        ln -s $zip_file "/var/www/daily_builds/sophie2-`echo $zip | cut -d'-' -f5 | cut -d'.' -f1`-last-build.zip" 
     52done 
     53 
     54for targz in $(ls *.tar.gz) 
     55do 
     56        targz_file="/var/www/daily_builds/sophie2-`echo $targz | cut -d'-' -f5 | cut -d'.' -f1`-$TODAY.tar.gz" 
     57        cp $targz  $targz_file 
     58        ln -s $targz_file "/var/www/daily_builds/sophie2-`echo $targz | cut -d'-' -f5 | cut -d'.' -f1`-last-build.tar.gz" 
     59done 
     60 
     61}}} 
     62This script will copy the created zips and targz(using hudson) into daily_builds folder in the server folder. It is fully created in the design while testing if it can work:).  
     63  * Hudson must be updated and batch tasks plugin must be installed. 
     64 * Rpm maven plugin should be integrated in the project. Here is the documentation http://mojo.codehaus.org/rpm-maven-plugin/ and the goal will be: 
     65 
     66{{{ 
     67mvn rpm:rpm 
     68}}} 
     69 
     70  * It seems that there will be no problems using the plugin with modular project, so it has to work without other configurations.  
     71  * Hudson job about this should be created too. 
     72 
     73 * The installer - izpack maven plugin seems to be broken about the modular hierarhy, so ant task must be created, except using the plugin.  
     74 
     75 * In my opinion dmg and deb packages should be created in the next revision of deployment task. The optional things about the JWS persistence and file entry manager refactoring goes to the next revision of the task too. 
     76 
     77 
    4278 
    4379= Implementation =