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

PTP/release engineering

< PTP
Revision as of 16:17, 20 March 2009 by G.watson.computer.org (Talk | contribs) (Build Scripts)

Overview

Building a PTP release or interim build uses an automated headless build on build.eclipse.org. This document describes how this build is configured, and the different scripts involved in the build process.

Preparation

Versions

Prior to a new release, the version numbers of various features/plugins must be updated to reflect the version of the build. In general, the version numbers of plugins should only be changed if the plugin has been modified.

Versions MUST be updated for the following:

  • org.eclipse.ptp.*-feature
  • org.eclipse.ptp.master
  • org.eclipse.ptp
  • org.eclipse.ptp.aix.ppc
  • org.eclipse.ptp.linux.ppc
  • org.eclipse.ptp.linux.x84
  • org.eclipse.ptp.linux.x86_64
  • org.eclipse.ptp.macosx.ppc
  • org.eclipse.ptp.macosx.x86
  • org.eclipse.ptp.debug.sdm
  • org.eclipse.ptp.proxy
  • org.eclipse.ptp.utils

For major or minor releases, the update site text will also need to be changed:

  • org.eclipse.ptp.releng/buildsite.xml

Build Scripts

The main PTP build scripts live in the releng/org.eclipse.ptp.releng plugin. The script that is used to build the RDT servers is located in org.eclipse.ptp.rdt.core.remotejars.

If you are building locally, you will need to download copies of the following files:

Edit build.xml and change the values of the eclipseDist, cdtDist, mylynDist, rseDist, and tauJars properties to the location of each downloaded file, respectively.

Running a headless build

The ptpbuild script in the org.eclipse.ptp.releng plugin manages the process of building PTP. It is used as follows:

sh ptpbuild [-r tag] [-d build_dir] [build_args]

If tag is specified, this will be the CVS tag used to check out the releng project. The default value is HEAD

If build_dir is specified, this will be the directory in which the build will take place (the basedir property in build.xml). The default location is /opt/public/download-staging.priv/tools/ptp/releng.

Any remaining arguments will be passed to the build.sh script.

The ptpbuild script checks out a copy of the org.eclipse.ptp.releng project prior to the build. In order to prevent the version in CVS from being used instead of your modified local version, you will need to comment out the section of the script that does the checkout. Once you've done this, copy the org.eclipse.ptp.releng directory you checked out earlier (and modified) to the build directory, then run ptpbuild.

Build results

On completion, a successful build will be located in /home/www/tools/ptp/builds/M.N.S/I.IYYYMMDDHHMM, where M.N.S is the version number of the release, and YYYYMMDDHHMM is the date and time stamp for the build. This directory will contain a signed zipped copy of the master update site along with various other files.

The master update site will be in the form:

  • ptp-master-M.N.S-IYYYYMMDDHHMM.zip

If the build was not successful, then the partial build will be located in the build directory.

Modifying the build

Changing the build version

In order to change a the build version of PTP, you need to make the following modifications in the appropriate branch:

  • Modify the branchVersion attribute in org.eclipse.ptp/build.xml (e.g. "2.1.1")
  • Modify the ptpTag and mapVersionTag tags in master/build.properties (e.g. "ptp_2_1")
  • Modify the ptpVersion attribute in org.eclipse.ptp.rdt.core.remotejars (e.g. "2.1.1")

Make sure you supply the correct branch tag to the ptpbuild script (e.g. "ptp_2_1") so that the correct version is built.

If all versions don't match correctly, strange things may happen.

Changing the build type

The build.xml script supports four different types of builds:

nightly (default) 
In addition to building, tags the CVS repository with the build version, signs the plugins, runs any tests, then copies the result to the BUILDS_DIR. Note that signing will only work on the Eclipse build server.
build 
Just runs the build.
testbuild 
Runs the build and tests, then copies the result to the BUILDS_DIR.
buildcopy 
Runs the build, and copies the result to the BUILDS_DIR without running any tests.

The build type can be modified by changing the default attribute of the project XML element in the build.xml script.

Changing the version of CDT used to compile RDT

  • Modify the cdtDist property in build.xml to point to the new version.
  • Modify the cdtCoreVersion property in org.eclipse.ptp.rdt.core.remotejars/build.xml to the new value of the org.eclipse.cdt.core plugin. This is generally the same as the CDT distribution I number without the "I", but not always, so it is good to check. e.g. if the CDT distribution is cdt-master-5.0.2.I200902130801.zip, then the cdtCoreVersion should be 5.0.2.200902130801.

Adding a new feature

  • Add the new feature to the PTP master feature org.eclipse.ptp.master
  • Add entries in org.eclipse.ptp.releng/maps/ptp.map for the feature and all of its plugins
  • Add entries to the tag target element in build.xml to tag the feature and its plugins

Back to the top