vote up 0 vote down star

I want to create create a label (tag) in the SVN with a file's version.

I'm already renaming the artifact by getting the file version of the main executable produced by the build. Such as: MyInstaller-1.2.3.1.exe. Now I want to create a tag in the SVN called /tags/1.2.3.1. I couldn't find a way to set such a thing in the labeling pattern.

Currently my labeling is just "%system.build.number%"

Any idea about how to do this?

I'm using TeamCity Professional Version 4.5.3 (build 9035)

flag

2 Answers

vote up 0 vote down

You can include SVN revision number to your TeamCity build number. For your build number pattern in Teamcity, use something like {build.vcs.number.1} in the build number pattern field.

After that build number will contain actual SVN revision number, and your labeling pattern %system.build.number% will contain it as well.

Hope this helps, KIR

link|flag
I'm trying to label SVN by using the version of an artifact file. – dr. evil Aug 30 at 16:17
You can set build number from your build script and pass it to the server. See TeamCity docs for build script interaction with TeamCity. – KIR Sep 28 at 6:05
vote up 0 vote down

If you're using Ant, maybe you should get SVNAnt.jar and try this.

The convention that I've seen for labeling is major.minor.svn (and .build if you're using CI).

link|flag
actually I'm using sln2008 runner from TeamCity and also my labelling done by TeamCity as well. All other custom build scripts "shamefully" written as Post-Build script in the VS.NET project. – dr. evil Jun 24 at 22:00
What I want really make a tag indicates the actual release version, the version which people downloading and using. I thought it'd be the easiest way to mark it. – dr. evil Jun 24 at 22:01
Subversion won't read your mind about major.minor release. You should build that into your tag name. That'll be enough of a clue for people, in my opinion. – duffymo Jun 24 at 22:08
Normally TeamCity supports variables but I couldn't find a way to put my own variable, I think that's the only way to tell it to TeamCity. Otherwise as you said I need to do it manually in my post-build scripts. – dr. evil Jun 24 at 22:24

Your Answer

Get an OpenID
or

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