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 "OTBuilding"

(Building and Testing with PDE/Build)
(Publishing and Promoting a p2 Repository: new signing strategy)
(15 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Note|OT builds are executed on https://hudson.eclipse.org/objectteams/}}
 +
 
The Object Teams Development Tooling is built in two main stages:
 
The Object Teams Development Tooling is built in two main stages:
  
Line 5: Line 7:
 
This is basically a plain vanilla PDE/Build setup with the following customizations:
 
This is basically a plain vanilla PDE/Build setup with the following customizations:
  
* the releng folder is exported from git, script exportReleng.sh basically does:
+
* the bootstrap script of the Hudson job [https://hudson.eclipse.org/objectteams/job/buildAndTest buildAndTest] exports the releng folder from git by saying:
: <code>(cd ${OT_GIT} ; git fetch ; git archive origin/master releng ) | tar xv</code>
+
: <code>git archive --remote=file://localhost/gitroot/objectteams/org.eclipse.objectteams.git ${branch} releng | tar xv</code>
 +
* build is then invoked via [http://git.eclipse.org/c/objectteams/org.eclipse.objectteams.git/tree/releng/build-scripts/build/otdt_runtests-hipp.sh otdt_runtests-hipp.sh]
 +
: which consumes a few parameters from the parameterized job
 
* a top-level [http://git.eclipse.org/c/objectteams/org.eclipse.objectteams.git/tree/releng/build-scripts/build/run.xml run.xml] ant file initializes a myriad of properties and then
 
* a top-level [http://git.eclipse.org/c/objectteams/org.eclipse.objectteams.git/tree/releng/build-scripts/build/run.xml run.xml] ant file initializes a myriad of properties and then
 
*# prepare building:
 
*# prepare building:
Line 43: Line 47:
 
** 4 more suites of jdt tests are used unmodified
 
** 4 more suites of jdt tests are used unmodified
 
** 6 test suites have been developed specifically for Object Teams.
 
** 6 test suites have been developed specifically for Object Teams.
** A grand total of more than 54000 individual tests are used.
+
** A grand total of more than 89000 tests are used.
 +
* As of 2.6M3 a total of 47 failures are known to happen:
 +
** 44 failures in OTJLD tests (4 x 11), see {{Bug|484164}}
 +
** 2 failures in builder tests (unadapted), unexpected build order
 +
** org.eclipse.objectteams.otdt.debug.tests.core.StratumTests.testDefaultStratum
  
== Publishing a p2 Repository ==
+
== Publishing and Promoting a p2 Repository ==
After building and testing were successful a shell script [http://git.eclipse.org/c/objectteams/org.eclipse.objectteams.git/tree/releng/build-scripts/bin/createRepository.sh createRepository.sh] performs these steps:
+
After building and testing were successful job [https://hudson.eclipse.org/objectteams/job/createRepo createRepo] performs the following step (using shell script [http://git.eclipse.org/c/objectteams/org.eclipse.objectteams.git/tree/releng/build-scripts/bin/createRepository-hipp.sh createRepository-hipp.sh]):  
  
 
# Jar signing  
 
# Jar signing  
#* zip all jars into a big ball - skip symlinks which only point to artifacts from previous build
+
#* condition jars using <code>org.eclipse.equinox.p2.jarprocessor</code>
#* send to the signing daemon, wait for the result to appear
+
#* use <code>curl</code> to invoke the signing service on each relevant jar
 +
#* ''(see {{bug|521263}} for EOL of command line singing)''
 
# Populate a new repository <code>stagingRepo</code>
 
# Populate a new repository <code>stagingRepo</code>
 
#* symlink artifacts from existing update site -- this ensures exact same bits, so unchanged plugins can be re-used during updating
 
#* symlink artifacts from existing update site -- this ensures exact same bits, so unchanged plugins can be re-used during updating
Line 57: Line 66:
 
#*: ''how can we ensure that clients in all update-scenarii will find bcel from original orbit repo?''
 
#*: ''how can we ensure that clients in all update-scenarii will find bcel from original orbit repo?''
 
# Pack200 all jar files  
 
# Pack200 all jar files  
#: ''apparently conditioning is already performed by PDE/Build for p2?''
 
 
# Generate p2 metadata
 
# Generate p2 metadata
 
# Patch <code>content.xml</code> as to widen the version range of references to <code>org.eclipse.jdt.core.feature.group</code>:
 
# Patch <code>content.xml</code> as to widen the version range of references to <code>org.eclipse.jdt.core.feature.group</code>:
Line 69: Line 77:
 
# Jar-up metadata
 
# Jar-up metadata
 
# Remove symlinks which were needed to resolve dependencies on previous builds
 
# Remove symlinks which were needed to resolve dependencies on previous builds
 
+
# Promote
'''Now the stagingRepo is ready to be copied over the previously published repository.'''
+
#: if parameter <code>promote</code> was set to <code>true</code> the resulting repository will be promoted to the download server as directory <code>objectteams/updates/ot2.<i>x</i>/<i>timestamp</i></code>
  
  
 
===The script accepts these parameters:===
 
===The script accepts these parameters:===
 
  createRepository.sh updateMasterRelativePath [ -nosign ] [ statsRepoId statsVersionId ]
 
  createRepository.sh updateMasterRelativePath [ -nosign ] [ statsRepoId statsVersionId ]
* updateMasterRelativePath:
+
* baseRepo:
 
:: relative path under <code>downloads/objectteams/updates</code> pointing to a repository from which to resolve unchanged bundles/features
 
:: relative path under <code>downloads/objectteams/updates</code> pointing to a repository from which to resolve unchanged bundles/features
 
:: specify <code>none</code> for an un-parented repository
 
:: specify <code>none</code> for an un-parented repository
* -nosign
 
:: skip signing
 
 
* statsRepoId
 
* statsRepoId
:: this identifies the repository in the download statistics, currently either <code>2.0</code> or <code>unstable</code>
+
:: this identifies the repository in the download statistics, currently either <code>2.6</code> or <code>unstable</code>
 
* statsVersionId
 
* statsVersionId
:: this identifies the version in the downloading statistics, currently <code>2.0.0RC2</code>
+
:: this identifies the version in the downloading statistics, currently <code>2.6M3</code>
 +
* promote
 +
:: if set to <code>true</code> promote the build result to the download server
 +
* sign
 +
:: if set to <code>nosign</code> signing is skipped
  
 
==Starting a new maintenance branch==
 
==Starting a new maintenance branch==
 
* Create new branch in GIT under <code>branches/maintenance</code>.
 
* Create new branch in GIT under <code>branches/maintenance</code>.
** otdt.map: add <code>,tag=branches/maintenance/MYBRANCH</code> to all plugins that are not locked to a specific build (tags/builds/..)
+
** otdt.map: add <code>,tag=branches/maintenance/MYBRANCH</code> to all plugins (incl. tests) that are not locked to a specific build (tags/builds/..)
* on build.eclipse.org copy the following items (using names indicating the branch):
+
** exportReleng.sh: create a copy using the corresponding branch
** folder <code>build/</code>, switch to the branch and commit changes to the branch
+
** test.properties.in: adjust hard-coded major.minor.micro versions of test plug-ins
*** run.properties: set <code>mapVersionTag</code> to the branch (more adjustments see regular version update)
+
*** create and populate folder <code>lib/</code>:
+
**** org.apache.bcel_5.2.0.v201005080400.jar
+
**** org.eclipse.egit.fetchfactory_0.12.0.201201141247.jar
+
** build-and-test: adjust path to use the above folder
+
** processSDKmap.sh: adjust hard-coded major.minor.micro versions of test plug-ins
+
** createRepository.sh: adjust path to <code>build/</code> and check and adjust the way how the JDT version is analyzed
+
  
 
==Updating to a new Eclipse version==
 
==Updating to a new Eclipse version==
Line 102: Line 105:
 
* See hints on branching above.
 
* See hints on branching above.
 
* The exact '''version of a downloadable SDK''' build must be selected
 
* The exact '''version of a downloadable SDK''' build must be selected
** this version goes into file <code>otdt_prerequisites.sh</code>, variables <code>EVERSION</code> and <code>DROP</code>
+
** this version goes into file <code>otdt_prerequisites.sh</code>, variables <code>EVERSION</code>, <code>SDK_QUALIFIER</code> and possibly <code>DROP</code> (the latter should be derivable from the former).
* on <code>build.eclipse.org</code> I have a script <code>bin/extractVersions</code> that '''extracts these numbers from the SDK tar ball''':
+
* Use job [https://hudson.eclipse.org/objectteams/job/extractVersions extractVersions] passing the relative directory that holds the SDK downloads. This creates versioned text snippets for these files:
** versions of pde.build and equinox.launcher: insert in <code>run.properties</code>
+
** <code>run.properties</code>: versions of
** version of the jdt feature:
+
*** pde.build
*** short format into <code>run.properties</code> (incl. <code>.next</code>: incremented by one for version range)
+
*** equinox.launcher
*** long format into <code>feature.xml</code> of otdt.core.patch
+
*** jdt feature (short format, exact and next - to define a minimal matching range)
* update test versions by running <code>processSDKmap.sh</code> on the SDK's map file (<code>directory.txt</code>) and pasting output into:
+
** <code>feature.xml</code> of otdt.core.patch
** <code>otdt.map</code>
+
*** long form of jdt feature version
 
** <code>test.properties</code>
 
** <code>test.properties</code>
:''Note, that this script only updates the version qualifiers &mdash; major.minor.micro are currently hard-coded!''
+
*** qualifier changes are automatically updated, ''but major.minor.micro of test dependencies are currently hard-coded!''
 +
* paste, commit and push these changes
 +
* finally run the Hudson job [https://hudson.eclipse.org/objectteams/job/buildAndTest buildAndTest]
  
 
[[Category:Object Teams]][[Category:Object Teams Development]]
 
[[Category:Object Teams]][[Category:Object Teams Development]]

Revision as of 11:29, 30 June 2018

Note.png
OT builds are executed on https://hudson.eclipse.org/objectteams/


The Object Teams Development Tooling is built in two main stages:

Building and Testing with PDE/Build

This is basically a plain vanilla PDE/Build setup with the following customizations:

  • the bootstrap script of the Hudson job buildAndTest exports the releng folder from git by saying:
git archive --remote=file://localhost/gitroot/objectteams/org.eclipse.objectteams.git ${branch} releng | tar xv
which consumes a few parameters from the parameterized job
  • a top-level run.xml ant file initializes a myriad of properties and then
    1. prepare building:
      • unzip a drop of the Eclipse SDK
      • put org.eclipse.egit.fetchfactory into dropins (version ≥ 0.12.0.201201141247 to include the fix for bug 365944 and more)
    2. create the OT/J compiler by 1. invocation of PDE/Build
      • action after this stage
        • install the org.eclipse.objectteams.otdt.core.patch feature into base
    3. build the OTDT and tests by 2. invocation of PDE/Build
      • preparations before this stage
        • unpack eclipse-test-framework
        • install the org.eclipse.test from the previous step into base, to make it available while compiling tests
        • pre-load the output repository location from the previous build including category-less metadata
      • polish after this stage
        • patch content.xml re version range in feature reference from patch feature (see also below, Publishing step 5)
    4. delegate to the next level for testing
  • the main build.xml is a fairly thin layer for steps 2 & 3 above: it handles some properties and then delegates to one of two final PDE/Build stages:
    • OT-Compiler: a PDE/Build with a generated build.xml and these parameters from customTargets.xml:
      • copy otdt.map from the exported releng/maps/
      • build feature org.eclipse.objectteams.otdt.core.patch
      • assemble as a p2 repo at file://${otdtUpdatesDir}
    • OTDT: a second PDE/Build with a generated build.xml and these customizations:
      • at this stage, the jdt.core is our version, so we can actually compiler OT/J code
      • copy otdt.map from the exported releng/maps/
      • by setting p2.gathering=true in build.properties we trigger a p2-based build.
  • the final test.xml drives setup and execution of tests:
    • create the software-under-test:
      • unzip the base Eclipse SDK
      • call p2 to install the OTDT from testrun/otdtUpdatesDir
    • call p2 to install the tests from testrun/updateSiteTests/eclipse
    • invoke all tests in sequence, has support for parallization (currently unused)

Unit test source and statistics

  • Source for all unit tests are here
    • 2 suites (plug-ins) of jdt tests are maintained with slight modifications
    • 4 more suites of jdt tests are used unmodified
    • 6 test suites have been developed specifically for Object Teams.
    • A grand total of more than 89000 tests are used.
  • As of 2.6M3 a total of 47 failures are known to happen:
    • 44 failures in OTJLD tests (4 x 11), see bug 484164
    • 2 failures in builder tests (unadapted), unexpected build order
    • org.eclipse.objectteams.otdt.debug.tests.core.StratumTests.testDefaultStratum

Publishing and Promoting a p2 Repository

After building and testing were successful job createRepo performs the following step (using shell script createRepository-hipp.sh):

  1. Jar signing
    • condition jars using org.eclipse.equinox.p2.jarprocessor
    • use curl to invoke the signing service on each relevant jar
    • (see bug 521263 for EOL of command line singing)
  2. Populate a new repository stagingRepo
    • symlink artifacts from existing update site -- this ensures exact same bits, so unchanged plugins can be re-used during updating
      would we copy these files they were more difficult to distinguish/skip in subsequent phases
    • physically copy bcel jar
      how can we ensure that clients in all update-scenarii will find bcel from original orbit repo?
  3. Pack200 all jar files
  4. Generate p2 metadata
  5. Patch content.xml as to widen the version range of references to org.eclipse.jdt.core.feature.group:
    The patch feature org.eclipse.objectteams.otdt.core.patch must refer to an exact version of the feature which it patches, but even the same jdt bits will create different qualifiers in subsequent builds, so when we build against jdt RC3 it wouldn't be compatible with the final release even if jdt has no changes. - see bug 304156
    This is done using patch-content-xml.xsl
  6. Archive category-less metadata as the basis for future builds
    cumulative repositories and categories don't play well together, because a category, once created cannot be augmented see bug 251888#c11
  7. Generate the category
  8. Add download statistics capability
    use XSL transformation addDownloadStats.xsl, which may not be a very safe way of doing this
  9. Jar-up metadata
  10. Remove symlinks which were needed to resolve dependencies on previous builds
  11. Promote
    if parameter promote was set to true the resulting repository will be promoted to the download server as directory objectteams/updates/ot2.x/timestamp


The script accepts these parameters:

createRepository.sh updateMasterRelativePath [ -nosign ] [ statsRepoId statsVersionId ]
  • baseRepo:
relative path under downloads/objectteams/updates pointing to a repository from which to resolve unchanged bundles/features
specify none for an un-parented repository
  • statsRepoId
this identifies the repository in the download statistics, currently either 2.6 or unstable
  • statsVersionId
this identifies the version in the downloading statistics, currently 2.6M3
  • promote
if set to true promote the build result to the download server
  • sign
if set to nosign signing is skipped

Starting a new maintenance branch

  • Create new branch in GIT under branches/maintenance.
    • otdt.map: add ,tag=branches/maintenance/MYBRANCH to all plugins (incl. tests) that are not locked to a specific build (tags/builds/..)
    • exportReleng.sh: create a copy using the corresponding branch
    • test.properties.in: adjust hard-coded major.minor.micro versions of test plug-ins

Updating to a new Eclipse version

Throughout the build process various version dependencies must be observed, thus moving to a new version of Eclipse to build against involves a number of adjustments:

  • See hints on branching above.
  • The exact version of a downloadable SDK build must be selected
    • this version goes into file otdt_prerequisites.sh, variables EVERSION, SDK_QUALIFIER and possibly DROP (the latter should be derivable from the former).
  • Use job extractVersions passing the relative directory that holds the SDK downloads. This creates versioned text snippets for these files:
    • run.properties: versions of
      • pde.build
      • equinox.launcher
      • jdt feature (short format, exact and next - to define a minimal matching range)
    • feature.xml of otdt.core.patch
      • long form of jdt feature version
    • test.properties
      • qualifier changes are automatically updated, but major.minor.micro of test dependencies are currently hard-coded!
  • paste, commit and push these changes
  • finally run the Hudson job buildAndTest

Copyright © Eclipse Foundation, Inc. All Rights Reserved.