Dynamic branchToTag in cquery [message #669230] |
Mon, 09 May 2011 14:25 |
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
|
|
|
|
Powered by
FUDForum. Page generated in 0.02131 seconds