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 "Orbit/Adding Bundles To Orbit In 5 Minutes"

(Added a shorter version for new comers)
 
m (minor changes to remove hypenated version numbers)
Line 13: Line 13:
 
         unpack="false"/>
 
         unpack="false"/>
  
* Commit changes to org.eclipse.orbit.build.feature.set1, and tag the feature plugin with the version number. The version format is <code>vYYYYMMDD-HHMM</code> in UTC.
+
* Commit changes to org.eclipse.orbit.build.feature.set1, and tag the feature plugin with the version number. The version format is <code>vYYYYMMDDHHMM</code> in UTC.
  
* Tag the bundle(s) that you wish to add to orbit with the version number. The version format is <code>vYYYYMMDD-HHMM</code> in UTC.
+
* Tag the bundle(s) that you wish to add to orbit with the version number. The version format is <code>vYYYYMMDDHHMM</code> in UTC.
  
 
* Add the plugins to orbit.psf:
 
* Add the plugins to orbit.psf:
Line 21: Line 21:
  
 
* Add the plugins to bundles.map
 
* Add the plugins to bundles.map
  plugin@org.hamcrest.generator,1.1.0=v20090302-0400,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.hamcrest.generator
+
  plugin@org.hamcrest.generator,1.1.0=v200903020400,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.hamcrest.generator
  plugin@org.hamcrest.generator.source,1.1.0=v20090302-0400,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.hamcrest.generator/source-bundle
+
  plugin@org.hamcrest.generator.source,1.1.0=v200903020400,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.hamcrest.generator/source-bundle
  
 
* Change the feature tag in bundles.map (the last line in that file)
 
* Change the feature tag in bundles.map (the last line in that file)
  feature@org.eclipse.orbit.build.feature.set1=v20090302-1910,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.eclipse.orbit.build.feature.set1
+
  feature@org.eclipse.orbit.build.feature.set1=v200903021910,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.eclipse.orbit.build.feature.set1
  
 
* Commit all changes in org.eclipse.orbit.releng, and wait for [http://build.eclipse.org:9777/dashboard/tab/dashboard CruiseControl] to pick it up.
 
* Commit all changes in org.eclipse.orbit.releng, and wait for [http://build.eclipse.org:9777/dashboard/tab/dashboard CruiseControl] to pick it up.

Revision as of 13:36, 3 March 2009

For the long version See Adding Bundles to Orbit

This is for primarily meant as a guide if you know how to create an orbit bundle, and wish to make a release:

  • Checkout the org.eclipse.orbit.releng and org.eclipse.feature.set1
  • Add the plugin to feature.xml:
  <plugin
        id="org.hamcrest.generator"
        download-size="0"
        install-size="0"
        version="1.1.0.qualifier"
        unpack="false"/>
  • Commit changes to org.eclipse.orbit.build.feature.set1, and tag the feature plugin with the version number. The version format is vYYYYMMDDHHMM in UTC.
  • Tag the bundle(s) that you wish to add to orbit with the version number. The version format is vYYYYMMDDHHMM in UTC.
  • Add the plugins to orbit.psf:
<project reference="1.0,:extssh:dev.eclipse.org:/cvsroot/tools,org.eclipse.orbit/org.hamcrest.generator,org.hamcrest.generator_v1.1,v1_1"/> 
  • Add the plugins to bundles.map
plugin@org.hamcrest.generator,1.1.0=v200903020400,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.hamcrest.generator
plugin@org.hamcrest.generator.source,1.1.0=v200903020400,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.hamcrest.generator/source-bundle
  • Change the feature tag in bundles.map (the last line in that file)
feature@org.eclipse.orbit.build.feature.set1=v200903021910,:pserver:anonymous@dev.eclipse.org:/cvsroot/tools,,org.eclipse.orbit/org.eclipse.orbit.build.feature.set1
  • Commit all changes in org.eclipse.orbit.releng, and wait for CruiseControl to pick it up.

See Orbit Builds for Orbit Committers.

Back to the top