Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Buckminster » Dynamic branchToTag in cquery
Dynamic branchToTag in cquery [message #669229] Mon, 09 May 2011 10:25 Go to previous message
Eclipse User
Originally posted by: Holger Schmid

Hello,

our development strategy uses svn with a lot of branching. All branches
shall be build and tested on a CI-Server (e.g. Jenkins).

To build our application, we are using the following build.cquery with
one advisor node:

---- build.cquery ----
<cq:componentQuery ... resourceMap="build.rmap">
<cq:rootRequest name="..." componentType="eclipse.feature" />
<cq:advisorNode namePattern="^my.plugin(\..+)?"
useTargetPlatform="false" branchTag="myBranch" />
</cq:componentQuery>
----------------------

The build.rmap looks has a svn provider:

---- build.rmap ----
<rmap>
<searchPath name="svn">
:
<uri
format=" http://user:passwd@svnServer/trunk/{0}?moduleAfterTag&am p;moduleAfterBranch">
<bc:propertyRef key="buckminster.component" />
</uri>
</searchPath>
<locator ... />
</rmap>
--------------------

This works fine as long as the value for branchTag in the cquery is
hard-coded.

Now the problem:
as we do have a lot of branches, we would like to use the same cquery
for all of our branches in order to get our product built and tested on
the CI-Server. What we would like to do is to set the value of the
branchTag using properties when calling the import for our headless
buckminster build:

e.g. change the branchTag in the cquery to:

<cq:componentQuery ... resourceMap="build.rmap">
:
<cq:advisorNode ... branchTag="${branch}" />
</cq:componentQuery>

Invoke the import for the headless build on Jenkins:
import -D branch=myBranch $WORKSPACE/build.cquery

Unfortuantly, this however does not work - we are receiving the
following errors during materialization:
:
my.feature: branch myBranch rejected: not in '${branch}'
my.feature: branch someOtherBranch rejected: not in '${branch}'
:

It looks like ${branch} has not been correctly replaced by "myBranch".
Do you have any solution to get this running?

Best regards,
Holger
 
Read Message
Read Message
Read Message
Previous Topic:Doing a jdk5 build with jdk6, best practises?
Next Topic:product.ant fails (missing req), pde product export works
Goto Forum:
  


Current Time: Fri May 24 04:03:04 EDT 2013

Powered by FUDForum. Page generated in 0.01622 seconds