I am trying to use tags in cc.net to control release build. When I have the build machine build for development, I have it tag with a keyword - 'release'. Now I would like to have the production project build using the same repository tag to build.

Since the tag 'release' would resolve to the most recent version, it should build the repository at exactly the same place as the development build.

Here is what I am using for the development project:

<sourcecontrol type="hg">
    <repo>//pdesql/SoftwareDevelopment/Repository/PBJ</repo>
    <workingDirectory>C:\build\pbj-dev-deploy</workingDirectory>
    <tagCommitMessage>release</tagCommitMessage>
    <tagOnSuccess>true</tagOnSuccess>
</sourcecontrol>
link|improve this question

You're not actually using the <tagNameFormat>ccnet_build_{0}</tagNameFormat> setting, so what is being committed for the tag name? I didn't think you could have duplicate tags and therefore wouldn't be able to do this more than once. – Sumo Aug 18 '11 at 18:51
feedback

1 Answer

up vote 1 down vote accepted

You can do this by adding a fragment to the end of the repo address:

//pdesql/SoftwareDevelopment/Repository/PBJ#TagName

You can read more about this by typing hg help urls

Note: his appears to be broken in the latest version. For now, I've had to downgrade Mercurial on our buildserver to 1.7.3 (one I know it works in). I've filed a bug here.

I also posted a little more on my blog about how I'm using this :-)

link|improve this answer
I had tried this and it didn't work. Didn't occur to me that it might be broken. – Kevin Sep 13 '11 at 16:03
I rolled back to 1.7.3 (known to work), but I think it was broken in 1.9, so 1.8.x probably works too. A fix has been committed, however when I tested it it didn't seem to work correctly - need to try again, as the author believes the fix should work. – Danny Tuppeny Sep 14 '11 at 8:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.