You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ct...@apache.org on 2009/03/21 15:38:38 UTC

svn commit: r756949 - /continuum/site/src/site/apt/development/release.apt

Author: ctan
Date: Sat Mar 21 14:38:38 2009
New Revision: 756949

URL: http://svn.apache.org/viewvc?rev=756949&view=rev
Log:
update release process guideline
- add note when preparing release using subversion > 1.5.0
- additional commands to rename the binary distributions of build agents


Modified:
    continuum/site/src/site/apt/development/release.apt

Modified: continuum/site/src/site/apt/development/release.apt
URL: http://svn.apache.org/viewvc/continuum/site/src/site/apt/development/release.apt?rev=756949&r1=756948&r2=756949&view=diff
==============================================================================
--- continuum/site/src/site/apt/development/release.apt (original)
+++ continuum/site/src/site/apt/development/release.apt Sat Mar 21 14:38:38 2009
@@ -64,7 +64,16 @@
  By default, the release will be staged in http://people.apache.org/builds/continuum/\$version\staging-repo.
  If you want to stage it elsewhere, set the deploy.altRepository property in your settings.xml file.
 
- #- Execute {{mvn release:prepare}} (check that it has been properly tagged. the tag name must be.. <<<continuum-[VERSION]>>>)
+ #- Execute {{mvn release:prepare}} (check that it has been properly tagged. the tag name must be.. <<<continuum-[VERSION]>>>)    
+
++-----+
+Note: Scm tag does not work with Subversion > 1.5.0
+
+[1] Use subversion 1.4.1 or
+[2] After scm tag fails with an error 'svn: File ... already exists', do an svn update first then resume the release preparation from the scm tag phase.
+    $> svn up
+    $> mvn release:prepare
++-----+
 
  #- Then execute {{mvn release:perform}}
 
@@ -98,6 +107,21 @@
 mv continuum-webapp-$VER.war.md5 apache-continuum-$VER.war.md5
 mv continuum-webapp-$VER.war.sha1 apache-continuum-$VER.war.sha1
 
+mv continuum-buildagent-jetty-$VER-bin.tar.gz apache-continuum-buildagent-$VER-bin.tar.gz
+mv continuum-buildagent-jetty-$VER-bin.tar.gz.md5 apache-continuum-buildagent-$VER-bin.tar.gz.md5
+mv continuum-buildagent-jetty-$VER-bin.tar.gz.sha1 apache-continuum-buildagent-$VER-bin.tar.gz.sha1
+mv continuum-buildagent-jetty-$VER-bin.tar.gz.asc apache-continuum-buildagent-$VER-bin.tar.gz.asc
+
+mv continuum-buildagent-jetty-$VER-bin.zip apache-continuum-buildagent-$VER-bin.zip
+mv continuum-buildagent-jetty-$VER-bin.zip.md5 apache-continuum-buildagent-$VER-bin.zip.md5
+mv continuum-buildagent-jetty-$VER-bin.zip.sha1 apache-continuum-buildagent-$VER-bin.zip.sha1
+mv continuum-buildagent-jetty-$VER-bin.zip.asc apache-continuum-buildagent-$VER-bin.zip.asc
+
+mv continuum-buildagent-webapp-$VER.war apache-continuum-buildagent-$VER.war
+mv continuum-buildagent-webapp-$VER.war.asc apache-continuum-buildagent-$VER.war.asc
+mv continuum-buildagent-webapp-$VER.war.md5 apache-continuum-buildagent-$VER.war.md5
+mv continuum-buildagent-webapp-$VER.war.sha1 apache-continuum-buildagent-$VER.war.sha1
+
 script available with 
 svn cat https://svn.apache.org/repos/asf/continuum/trunk/release-script.sh > release-script.sh
 +-----+