Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SMILA/Release Work Checklist"

(Make javadocs available)
 
(5 intermediate revisions by 2 users not shown)
Line 5: Line 5:
 
=== Check versions of SMILA bundles and packages ===
 
=== Check versions of SMILA bundles and packages ===
  
All bundles, packages, features, products should have version numbers equals to the release/milestone number (without the milestone part of sourse). I.e. for release 1.0 all versions should be set to 1.0.0.
+
All bundles, packages, features, products should have version numbers equals to the release/milestone number (without the milestone part of course). I.e. for release 1.0 all versions should be set to 1.0.0.
  
 
=== Put builds on Eclipse download server ===
 
=== Put builds on Eclipse download server ===
Line 13: Line 13:
 
* Log-in to <code>build.eclipse.org</code> using committer ID and password.
 
* Log-in to <code>build.eclipse.org</code> using committer ID and password.
  
* For milestones: <code>cd /opt/public/rt/smila/milestones</code>
+
* For milestones: <code>cd /shared/rt/smila/milestones</code>
* For releases: <code>cd /opt/public/rt/smila/releases</code>
+
* For releases: <code>cd /shared/rt/smila/releases</code>
  
 
* In the following "$VERSION" is the release number.
 
* In the following "$VERSION" is the release number.
Line 21: Line 21:
  
 
* <code>mkdir $VERSION</code>
 
* <code>mkdir $VERSION</code>
* <code>cp ../nightly/SMILA-*.zip $VERSION</code>
+
* <code>cp /shared/rt/smila/nightly/SMILA-*.zip $VERSION</code>
 
* rename the files by replacing the "r1234" part with $VERSION
 
* rename the files by replacing the "r1234" part with $VERSION
  
Line 34: Line 34:
 
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/milestones/$VERSION/SMILA-$VERSION-win32.win32.x86.zip
 
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/milestones/$VERSION/SMILA-$VERSION-win32.win32.x86.zip
 
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/milestones/$VERSION/SMILA-$VERSION-win32.win32.x86_64.zip
 
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/milestones/$VERSION/SMILA-$VERSION-win32.win32.x86_64.zip
 +
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/milestones/$VERSION/SMILA-$VERSION-core-source.zip
 +
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/milestones/$VERSION/SMILA-$VERSION-integrator-examples.zip
  
 
* Download URLs for releases:  
 
* Download URLs for releases:  
Line 41: Line 43:
 
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/releases/$VERSION/SMILA-$VERSION-win32.win32.x86.zip
 
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/releases/$VERSION/SMILA-$VERSION-win32.win32.x86.zip
 
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/releases/$VERSION/SMILA-$VERSION-win32.win32.x86_64.zip
 
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/releases/$VERSION/SMILA-$VERSION-win32.win32.x86_64.zip
 +
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/releases/$VERSION/SMILA-$VERSION-core-source.zip
 +
** http://www.eclipse.org/downloads/download.php?file=/rt/smila/releases/$VERSION/SMILA-$VERSION-integrator-examples.zip
  
 
=== Make javadocs available ===
 
=== Make javadocs available ===
  
* <code>cd /opt/public/rt/smila/javadoc</code>
+
* <code>cd /shared/rt/smila/javadoc</code>
 
* <code>cp -R current $VERSION</code>
 
* <code>cp -R current $VERSION</code>
 
* <code>cd $VERSION</code>
 
* <code>cd $VERSION</code>
Line 50: Line 54:
  
 
* Send URLs to a project lead to put them on the web pages (:
 
* Send URLs to a project lead to put them on the web pages (:
** URL to view online: http://build.eclipse.org/rt/smila/javadoc/$VERSION/
+
** URL to view online: http://archive.eclipse.org/rt/smila/javadoc/$VERSION/
** URL to download: http://build.eclipse.org/rt/smila/javadoc/SMILA-javadoc-$VERSION.zip
+
** URL to download: http://archive.eclipse.org/rt/smila/javadoc/SMILA-javadoc-$VERSION.zip
  
 
[[Category:SMILA]]
 
[[Category:SMILA]]

Latest revision as of 09:24, 14 April 2015

How to create a SMILA release or milestone

This page describes what to do to make a SMILA release or milestone available for download.

Check versions of SMILA bundles and packages

All bundles, packages, features, products should have version numbers equals to the release/milestone number (without the milestone part of course). I.e. for release 1.0 all versions should be set to 1.0.0.

Put builds on Eclipse download server

  • For milestones: cd /shared/rt/smila/milestones
  • For releases: cd /shared/rt/smila/releases
  • In the following "$VERSION" is the release number.
    • milestones: e.g. "1.0-M1".
    • releases: e.g. "1.0"
  • mkdir $VERSION
  • cp /shared/rt/smila/nightly/SMILA-*.zip $VERSION
  • rename the files by replacing the "r1234" part with $VERSION
  • For milestones: cp -R $VERSION /home/data/httpd/download.eclipse.org/rt/smila/milestones
  • For releases: cp -R $VERSION /home/data/httpd/download.eclipse.org/rt/smila/releases
  • Send URLs for download to a project lead to put them on the web pages (:

Make javadocs available

  • cd /shared/rt/smila/javadoc
  • cp -R current $VERSION
  • cd $VERSION
  • zip -r ../SMILA-javadoc-$VERSION.zip *

Back to the top