Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Corona/Releng/Build"

< Corona‎ | Releng
(Build prerequisities)
Line 15: Line 15:
 
*Info-Zip zip and unzip executables on system path
 
*Info-Zip zip and unzip executables on system path
 
*JDK 1.4.x (or newer) installation
 
*JDK 1.4.x (or newer) installation
*ECF 0.8.0 plugins copied to ${eclipseDir}/plugins
+
*ECF 0.8.0 plugins copied to ${[[#eclipseDir]]}/plugins
*[http://www.eclipse.org/downloads/download.php?file=/eclipse/equinox/drops/S-3.2RC5-200605191206/org.eclipse.equinox.event_1.0.0.v20060510.jar org.eclipse.equinox.event plugin] copied to ${eclipseDir}/plugins
+
*[http://www.eclipse.org/downloads/download.php?file=/eclipse/equinox/drops/S-3.2RC5-200605191206/org.eclipse.equinox.event_1.0.0.v20060510.jar org.eclipse.equinox.event plugin] copied to ${[[#eclipseDir]]}/plugins
  
 
== Steps required for setting headless build platform ==
 
== Steps required for setting headless build platform ==
Line 22: Line 22:
 
*set the following properties from buildCorona.bat/buildCorona.sh to reflect the build environment:
 
*set the following properties from buildCorona.bat/buildCorona.sh to reflect the build environment:
 
#set JAVA_HOME to point at the JDK installation
 
#set JAVA_HOME to point at the JDK installation
#set eclipseDir to point at the Eclipse installation to be used for the build
+
#<div id="eclipseDir">set eclipseDir to point at the Eclipse installation to be used for the build</div>
 
#set buildType to receive server or/and client Corona distribution, supported values for this property: client, server, full
 
#set buildType to receive server or/and client Corona distribution, supported values for this property: client, server, full
 
*execute the buildCorona.bat/buildCorona.sh file to build Corona project.
 
*execute the buildCorona.bat/buildCorona.sh file to build Corona project.

Revision as of 09:47, 26 May 2006

Eclipse Home Wiki Home Development

Installation and configuration of headless automated build process for Corona

For headless build the infrastructure provided by the PDE and the RelEng (Release Engineering) plugins is needed. To create an environment needed for the build process the seperate org.eclipse.releng.basebuilder plugin is sufficient however the Eclipse SDK can be used as well (Corona requires 3.2 version of Eclipse environment).

Build prerequisities

Steps required for setting headless build platform

  • download buildCorona.bat for windows platform or buildCorona.sh for linux platform
  • set the following properties from buildCorona.bat/buildCorona.sh to reflect the build environment:
  1. set JAVA_HOME to point at the JDK installation
  2. set eclipseDir to point at the Eclipse installation to be used for the build
  3. set buildType to receive server or/and client Corona distribution, supported values for this property: client, server, full
  • execute the buildCorona.bat/buildCorona.sh file to build Corona project.

Execution of buildCorona script comprises:

  • cleaning previous build output
  • fetching build scripts and properties required by the build process such as:
  1. run.bat/run.sh - scripts starting an Eclipse instance as AntRunner
  2. buildCorona.xml - build script file controling the build sequence
  3. customTargets.xml - build script file enabling customization of the build process, defines the map files to be fetched and the features to be built
  4. build.properties - contains the properties needed for fetching and building the sources
  • executing run.bat/run.sh script

Results of successful build process

${buildDirectory}/buildResults directory (buildResults name is a value of buildLabel property defined inside the build.properties) contains zip archive(s) with corona distribution. For 'buildType=full' two archives are created: org.eclipse.corona.client-DEMO.zip and org.eclipse.corona.server-DEMO.zip (DEMO name is a value of buildId property defined inside the build.properties).

Stages of build process

  • preBuild - fetching and concatenating map files (in corona.map dynamic setting of cvs tag name is made on the basis of fetchTag property value defined inside build.properties)
  • fetch - retrieving project resources on the basis of the map files definition
  • generate - generating build scripts for fetched resources
  • process - compiling sources, coping results to build output directory or creating jar files containing the build output
  • assemble - creating zip archive containg all build results

Useful links concerning eclipse build process

Back to the top