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 |
| 45 | TODAY=`date +%Y%m%d%H%M` |
| 46 | cd ./jobs/Sophie\ 2.0\ Distribution/workspace/sophie2/sophie2-platform/target/ |
| 47 | for zip in $(ls *.zip) |
| 48 | do |
| 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" |
| 52 | done |
| 53 | |
| 54 | for targz in $(ls *.tar.gz) |
| 55 | do |
| 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" |
| 59 | done |
| 60 | |
| 61 | }}} |
| 62 | This 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 | {{{ |
| 67 | mvn 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 | |