active questions tagged teamcity - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T23:11:17Zhttp://stackoverflow.com/feeds/tag/teamcityhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1787070/setting-up-teamcity-to-work-with-clearcase1Setting up TeamCity to work with ClearCaseAndrew Garrison2009-11-24T00:33:35Z2009-12-01T20:59:27Z
<p>I'm trying to setup TeamCity to work with ClearCase for continuous integration, and I've been having a few problems. TeamCity is complaining that it cannot build the patch for the build. I've been scouring the internet for information on ClearCase and TeamCity, and there is a surprisingly small amount of information on the topic. Has anyone had any success with getting TeamCity to work with ClearCase?</p>
<p>Here's my build log:</p>
<pre><code>[18:09:11]: Updating sources (2s)
[18:09:13]: [Updating sources] Failed to build patch for build #1.0.23-November-2009.18:09:09, build id: 10, VCS root: ClearCase, due to error: Cannot get version in view 'D:\CCdata\my_vob\my_project' for the directory D:\CCdata\my_vob\my_project
[18:09:13]: Will repeat attempt when server will be available, number of attempts left: 2
[18:09:23]: Updating sources (1s)
[18:09:25]: [Updating sources] Failed to build patch for build #1.0.23-November-2009.18:09:09, build id: 10, VCS root: ClearCase, due to error: Cannot get version in view 'D:\CCdata\my_vob\my_project' for the directory D:\CCdata\my_vob\my_project
[18:09:25]: Will repeat attempt when server will be available, number of attempts left: 1
[18:09:35]: Updating sources (2s)
[18:09:37]: [Updating sources] Failed to build patch for build #1.0.23-November-2009.18:09:09, build id: 10, VCS root: ClearCase, due to error: Cannot get version in view 'D:\CCdata\my_vob\my_project' for the directory D:\CCdata\my_vob\my_project
[18:09:37]: [Updating sources] Patch is broken, can be found in file: C:\TeamCity\buildAgent\temp\cache\temp58518patch10
[18:09:37]: [Updating sources] Error while applying patch: Failed to build patch for build #1.0.23-November-2009.18:09:09, build id: 10, VCS root: ClearCase...
</code></pre>
<p>Here's the <a href="http://www.jetbrains.net/devnet/servlet/JiveServlet/download/5250872-11254/teamcity-vcs.log.zip" rel="nofollow">teamcity-vcs.log</a> file:</p>
http://stackoverflow.com/questions/1818795/teamcity-build-number-reporting-from-msbuild0TeamCity build number reporting from MSBuildildev2009-11-30T09:41:47Z2009-12-01T10:39:09Z
<p>Hi,</p>
<p>I'm reporting a build number to TeamCity from my MSBuild script using the following TeamCity task:</p>
<pre><code><TeamCitySetBuildNumber Condition="'$(TEAMCITY_BUILD_PROPERTIES_FILE)' != '' " BuildNumber="$(UpdatedVersionInfo)" />
</code></pre>
<p>This is called from an UpdateVersion task which generates UpdatedVersionInfo from a global AssemblyInfo.cs</p>
<p>This all works fine when the build succeeds, however if the build fails early in the process, TeamCity displays the build number set in the 'General Settings' tab, e.g. 1.0.0.{0}</p>
<p>Is there anyway around this as the build number has to be generated from the build script, rather than TeamCity.</p>
<p>TIA</p>
http://stackoverflow.com/questions/1773457/build-status-hardware1Build status hardwarepauloya2009-11-20T21:49:46Z2009-11-27T12:43:36Z
<p>We have been using Teamcity for some time for the Continous Integration in the project. Now we want to have some kind of hardware in the room that shows everyone that a build was broken. I've seen mentions to lava lamps and rabbits that can do this, but couldn't see any examples for Teamcity.<br>
Does anyone have a good suggestion on what to buy and how to integrate with Teamcity?<br>
Thanks</p>
http://stackoverflow.com/questions/1799309/server-side-checkout-vs-agent-side-checkout0Server Side Checkout vs Agent Side CheckoutAndrew Garrison2009-11-25T19:14:29Z2009-11-27T11:06:21Z
<p>I've been reading through the TeamCity 4.x documentation, and I am confused what the difference between a server side checkout and an agent side checkout is, as mentioned in this snippet from their help section:</p>
<blockquote>
<p>Exclude checkout rules will only speed up <strong>server-side</strong> checkouts. <strong>Agent-side</strong> checkouts emulate the exclude checkout rules by checking out all the root directories mentioned as include rules and deleting the excluded directories. So, exclude checkout rules should generally be avoided for the agent-side checkout. </p>
</blockquote>
<p>What is the difference between a server-side checkout and an agent-side checkout?</p>
http://stackoverflow.com/questions/1806121/how-do-i-setup-an-exteral-status-page-in-teamcity-like-their-standard-one-that-wo0How do i setup an exteral status page in TeamCity like their standard one that won't require me to loginJames Summerton2009-11-26T23:33:13Z2009-11-26T23:33:13Z
<p>We have just moved from CCNET to TeamCity for CI.</p>
<p>In TeamCity, I can use the ExternalStatus page/widget fine.</p>
<p>We run Cradiator (<a href="http://cradiator.codeplex.com" rel="nofollow">http://cradiator.codeplex.com</a>) as a build radiator and notifier in our room and I have modified the Team Piazza TeamCity plugin to return xml in the CCNET format so Cradiator can read it.</p>
<p>The problem I have is that the modified TeamPiazza page needs authentication, whereas the TeamCity externalstatus page doesn't.</p>
<p>So my question is, how can I make the custom page I have not require authentication.</p>
http://stackoverflow.com/questions/1799477/cleartool-error-operation-get-cleartext-failed-permission-denied1ClearTool Error: Operation "get cleartext" failed: Permission denied.Andrew Garrison2009-11-25T19:43:17Z2009-11-25T20:36:21Z
<p>When trying to compile a project with TeamCity, I am getting an error from cleartool:</p>
<blockquote>
<p>"get cleartext" failed: Permission denied.</p>
</blockquote>
<p>The command that is failing is a call to cleartool get:</p>
<pre><code>cleartool get -to C:\TeamCity\temp\cc_35875temp V:\andrew_CI_view\My_vob\MyProject@@\main\branch\7\Apps\main\branch\1\MyProject.Apps.FileTransferUtility\main\branch\1\App.xaml\main\branch\1
</code></pre>
<p>What's strange though, is that if I manually execute this command from the command line, it works fine (ERRORLEVEL is 0, no error messages, etc).</p>
<p><strong>Has anyone else seen such a message, or have any idea what could be wrong?</strong></p>
<p><hr></p>
<p>Here are the details of my setup:</p>
<ul>
<li>TeamCity Professional Version 4.5.5 (build 9103)</li>
<li>TeamCity is using the my user account for its Build Agent.</li>
<li>TeamCity is attempting to connect to a ClearCase Dynamic view:
D:\CCdata\snapview\andrew_CI_view</li>
</ul>
<p>Settings from the Administration > Edit Build Configuration > Edit VCS Root Page:</p>
<ul>
<li>Type of VCS: ClearCase</li>
<li>ClearCase View Path: V:\andrewCIview</li>
<li>Relative path within the view: My_vob\MyProject</li>
<li>Use ClearCase: BASE</li>
<li>No Checkout Rules</li>
</ul>
<p>ClearCase 7.0.1.3-IFIX01</p>
<p>Config Spec for Dynamic View:</p>
<pre><code>element * CHECKEDOUT
element * .../MyProject/LATEST
</code></pre>
<p><hr></p>
<p>Here are the relevant lines from the teamcity-vcs.log</p>
<pre><code>[2009-11-25 13:20:20,905] INFO [ Cached pool 12] - jetbrains.buildServer.VCS - ClearCase executing cleartool get -to C:\TeamCity\temp\cc_35875temp V:\andrew_CI_view\My_vob\MyProject@@\main\branch\7\Apps\main\branch\1\MyProject.Apps.FileTransferUtility\main\branch\1\App.xaml\main\branch\1
[2009-11-25 13:20:20,905] INFO [ Cached pool 12] - .clearcase.ClearCaseConnection - interactive execute: cleartool get -to C:\TeamCity\temp\cc_35875temp V:\andrew_CI_view\My_vob\MyProject@@\main\branch\7\Apps\main\branch\1\MyProject.Apps.FileTransferUtility\main\branch\1\App.xaml\main\branch\1
[2009-11-25 13:20:21,155] INFO [ Cached pool 12] - jetbrains.buildServer.VCS - ClearCase executing cleartool quit
[2009-11-25 13:20:21,155] INFO [ Cached pool 12] - .clearcase.ClearCaseConnection - interactive execute: cleartool quit
[2009-11-25 13:20:21,155] WARN [ Cached pool 12] - jetbrains.buildServer.VCS - Failed to build patch for build #15, build id: 17, VCS root: ClearCaseVCS, due to error: java.io.IOException: cleartool: Error: Operation "get cleartext" failed: Permission denied.
jetbrains.buildServer.vcs.VcsException: java.io.IOException: cleartool: Error: Operation "get cleartext" failed: Permission denied.
at jetbrains.buildServer.buildTriggers.vcs.clearcase.CCPatchProvider.loadFile(CCPatchProvider.java:171)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.CCPatchProvider.access$200(CCPatchProvider.java:31)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.CCPatchProvider$2.processFile(CCPatchProvider.java:111)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.structure.CacheProcessor.processAllRevisions(CacheProcessor.java:71)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.structure.CacheElement.processAllVersionsInternal(CacheElement.java:178)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.structure.CacheElement.processAllVersions(CacheElement.java:96)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.ClearCaseConnection.processAllVersions(ClearCaseConnection.java:665)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.CCPatchProvider.buildPatch(CCPatchProvider.java:52)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.ClearCaseSupport.buildPatchForConnection(ClearCaseSupport.java:294)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.ClearCaseSupport.buildPatch(ClearCaseSupport.java:281)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.ClearCaseSupport$7.buildPatch(ClearCaseSupport.java:755)
at jetbrains.buildServer.serverSide.impl.projectSources.BuildPatchUtil$1.buildPatch(BuildPatchUtil.java:2)
at jetbrains.buildServer.vcs.VcsSupportUtil.buildPatch(VcsSupportUtil.java:81)
at jetbrains.buildServer.serverSide.impl.projectSources.BuildPatchUtil.buildPatch(BuildPatchUtil.java:2)
at jetbrains.buildServer.serverSide.impl.projectSources.PatchComposer.buildCleanPatchToStream(PatchComposer.java:121)
at jetbrains.buildServer.serverSide.impl.projectSources.PatchComposer.access$100(PatchComposer.java:65)
at jetbrains.buildServer.serverSide.impl.projectSources.PatchComposer$2.constructPatch(PatchComposer.java:1)
at jetbrains.buildServer.serverSide.impl.projectSources.SmallPatchCache.getCachedCleanPatch(SmallPatchCache.java:36)
at jetbrains.buildServer.serverSide.impl.projectSources.PatchCacheImpl.requestCachedPatch(PatchCacheImpl.java:25)
at jetbrains.buildServer.serverSide.impl.projectSources.PatchComposer.getOrMakeCacheableCleanPatch(PatchComposer.java:140)
at jetbrains.buildServer.serverSide.impl.projectSources.PatchComposer.makePatch(PatchComposer.java:36)
at jetbrains.buildServer.serverSide.impl.projectSources.PatchComposer.buildPatchForRoot(PatchComposer.java:71)
at jetbrains.buildServer.serverSide.impl.projectSources.PatchComposer.buildPatch(PatchComposer.java:125)
at jetbrains.buildServer.serverSide.impl.BuildTypeImpl.buildPatch(BuildTypeImpl.java:290)
at jetbrains.buildServer.serverSide.impl.BuildTypeImpl$$FastClassByCGLIB$$a84db719.invoke(<generated>)
at net.sf.cglib.proxy.MethodProxy.invoke(MethodProxy.java:149)
at org.springframework.aop.framework.Cglib2AopProxy$CglibMethodInvocation.invokeJoinpoint(Cglib2AopProxy.java:700)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
at jetbrains.buildServer.serverSide.impl.auth.TeamCityMethodSecurityInterceptor.invoke(TeamCityMethodSecurityInterceptor.java:33)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
at org.springframework.aop.framework.Cglib2AopProxy$FixedChainStaticTargetInterceptor.intercept(Cglib2AopProxy.java:582)
at jetbrains.buildServer.serverSide.impl.BuildTypeImpl$$EnhancerByCGLIB$$effc1aaa.buildPatch(<generated>)
at jetbrains.buildServer.serverSide.impl.BuildStarter$2.call(BuildStarter.java:5)
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:269)
at java.util.concurrent.FutureTask.run(FutureTask.java:123)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.io.IOException: cleartool: Error: Operation "get cleartext" failed: Permission denied.
at jetbrains.buildServer.buildTriggers.vcs.clearcase.process.InteractiveProcess.executeAndReturnProcessInput(InteractiveProcess.java:64)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.ClearCaseConnection$ClearCaseInteractiveProcess.copyFileContentTo(ClearCaseConnection.java:997)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.ClearCaseConnection.loadFileContent(ClearCaseConnection.java:308)
at jetbrains.buildServer.buildTriggers.vcs.clearcase.CCPatchProvider.loadFile(CCPatchProvider.java:141)
... 37 more
</code></pre>
http://stackoverflow.com/questions/1790238/teamcity-error-message-for-server-url-1Teamcity ERROR MESSAGE for Server Url?skurge2009-11-24T13:58:46Z2009-11-24T14:08:51Z
<p>Hello, I am setup teamcity on my windows 7 laptop. I can connect to it on the server with the windows tray notifier. When I try to connect to it from another machine, i get the "Server URL IS INVALID ERROR? Please Help!</p>
http://stackoverflow.com/questions/1789392/setting-tail-of-assemblyversion-to-be-teamcity-buildnumber0Setting tail of AssemblyVersion to be TeamCity $(build_number)El Bauldo2009-11-24T11:13:20Z2009-11-24T11:13:20Z
<p>I want to set the Assembly number to the following</p>
<p>AssemblyMajorVersion.AssemblyMinorVersion.AssemblyBuildNumber.AssemblyRevision</p>
<p>YYYY-MM-DD-XXX</p>
<p>Where XXX is my TEamCity $(BUILD_NUMBER)</p>
<p>I can assign the value of $(BUILD_NUMBER) and see that is has been set using a text message e.g.
</p>
<p>However, When I inspect $(MaxAssemblyVersion), I get an emtpy string.</p>
<p>How should I set up my AssmblyInfo override e.g.</p>
<pre><code><AssemblyRevisionType>NoIncrement</AssemblyRevisionType>
<AssemblyRevisionFormat>0</AssemblyRevisionFormat>
</code></pre>
<p>And what is the difference between NoIncrement, AutoIncrement.</p>
http://stackoverflow.com/questions/1789212/running-multiple-teamcity-agents-on-the-same-computer0Running multiple TeamCity Agents on the same computer?ripper2342009-11-24T10:31:21Z2009-11-24T11:11:11Z
<p>We have several build machines, each running a single TeamCity build agent. Each machine is very strong, and we'd like to run several build agents on the same machine.</p>
<p>Is this possible, <strong>without using virtualization</strong>? Are there quality alternatives to TeamCity that support this? </p>
http://stackoverflow.com/questions/1527550/how-can-i-prevent-teamcity-from-creating-artifacts-for-pre-tested-commits0How can I prevent TeamCity from creating artifacts for pre-tested commits?Sam2009-10-06T19:20:53Z2009-11-22T12:35:20Z
<p>Right now, TeamCity is creating 2 sets of artifacts each time I do a successful pre-tested commit, one when it builds the solution with my local changes against which to run the tests, and a second time when it gets triggered by the VCS repository change.</p>
<p>How can I prevent it from creating artifacts for its build-to-test before commit?</p>
http://stackoverflow.com/questions/1772374/compiling-historical-information-esp-slocs-about-a-project0Compiling historical information (esp. SLOCs) about a projectJohannes Rudolph2009-11-20T18:24:32Z2009-11-20T18:54:14Z
<p>I am looking for a tool that will help me to compile a history of certain code metrics for a given project.</p>
<p>The project is stored inside a mercurial repository and has about a hundred revisions. I am looking for something that:</p>
<ul>
<li>checks out each revision</li>
<li>computes the metrics and stores them somewhere with an identifier of the revision</li>
<li>does the same with the next revisions</li>
</ul>
<p>For a start, counting SLOCs would be sufficient, but it would also be nice to analyze # of Tests,TestCoverage etc.</p>
<p>I know such things are usually handled by a CI Server, however I am solo on this project and thus haven't bothered to set up a CI Server (I'd like to use TeamCity but I really didn't see the benefit of doing so in the beginnig). If I'd set up my CI Server now, could it handle that?</p>
http://stackoverflow.com/questions/1766868/teamcity-git-teamcity-plugin-parseexception0TeamCity + git-teamcity plugin: ParseExceptionErik van Brakel2009-11-19T21:59:08Z2009-11-19T23:43:54Z
<p>Alright, I've trying to set up a TeamCity server the past few hours, but this as really gotten me stuck. I've got everything working, agents are running, plugin is installed, but when I run the build process it instantly crashes with the following log error:</p>
<pre><code>Error collecting changes for VCS root 'git@github.com:chrisjowen/nLess.git:master' #1
java.lang.RuntimeException: java.text.ParseException: Unparseable date:
"Mon Nov 16 15:01:08 2009 +0100"
</code></pre>
<p>We already have a TeamCity setup on a remote server, but I didn't set it up myself. I just want to be able to do the same thing personally, because I'd like to see if we can benefit from this at work.</p>
<p>I use the exact same TeamCity configuration as the remote one, and I updated git to the latest version.</p>
<p>The date you see is the date of the last commit on the master branch on the github repository, so it must be something in the VCS plugin. Anyone encounter this? Or even better, anyone know what I should do to solve this?</p>
<p>Additional info:
Windows XP Professional (32 bit), English<br>
TeamCity Professional Version 4.5.5 (build 9103)<br>
git-teamcity plugin available here: <a href="http://github.com/chrisortman/git-teamcity" rel="nofollow">http://github.com/chrisortman/git-teamcity</a></p>
<p><hr></p>
<p>Use <a href="http://github.com/petemounce/git-teamcity" rel="nofollow">http://github.com/petemounce/git-teamcity</a>, this fork fixes the issue I had. The dateformat didn't specify a locale, so it used the default. This fork explicitly sets the US locale, which works when you're using a different locale (mine was set to nl).</p>
http://stackoverflow.com/questions/1761916/configuring-multiple-build-configurations-from-shared-vcs-root-in-teamcity0Configuring Multiple Build Configurations from Shared VCS Root in TeamCitysfussenegger2009-11-19T09:12:18Z2009-11-19T13:46:27Z
<p>I have a single SVN repository containing multiple projects, e.g.</p>
<ul>
<li>/molindo/trunk/foo</li>
<li>/molindo/trunk/bar</li>
<li>/molindo/trunk/baz</li>
</ul>
<p>Currently, I've configured 3 projects, all using the shared VCS root /molindo. </p>
<p>By default, every commit would trigger build of all 3 projects (although trunk/foo doesn't care about changes in trunk/bar or trunk/baz). As I've seen, it's possible to configure VCS triggers (e.g. +:/trunk/foo/** for project foo). While this works for build triggering, it still shows pending changes for other projects.</p>
<p>So what are my options now. I could think of </p>
<ol>
<li>accept unrelated changes shown as pending on UI </li>
<li>go back and create VCS roots for each project</li>
</ol>
<p>Both options are suboptimal. The first because it's ugly, the second because it's cumbersome. Is there another option I don't know of? Or is there another (preferred) to build multiple projects from a shared SVN repository?</p>
http://stackoverflow.com/questions/1461998/how-to-call-the-a-unit-test-target-in-a-project-from-a-solution-project0How to call the a unit test target in a project from a 'solution' projectMatthewMartin2009-09-22T19:05:26Z2009-11-18T11:00:04Z
<p>I'm trying to get Team City to build my .NET solution and run my nUnit tests.</p>
<p>I know I can modify the individual projects and tell them always run the unit tests. I <em>don't</em> want the unit tests to run when I click "build" in visual studio, but I <em>do</em> want the unit tests to run when Team City kicks off a msbuild task.</p>
<p>I tried "msbuild solutionname.sln" and gave team city the targets of "BUILD" and my custom build tag of "TEST". However, msbuild can't find any specified target when invoked against a sln solution. <em>So,</em> I ran msbuild to convert my solution into a project which has a target like this:</p>
<pre><code> <Target Name="Build">
<MSBuild Projects="@(BuildLevel0)" >
</Target>
</code></pre>
<p>I naively thought I could write a new task like this:</p>
<pre><code><Target Name="BuildAndTest">
<CallTarget Targets="Build"/> <!-- This builds everything in solution -->
<CallTarget Targets="Test"/> <!-- DOES NOT WORK. This target exists in project that gets built by this solution -->
</Target>
</code></pre>
<p>The nunit target looks like this:</p>
<pre><code> <Target Name="Test" DependsOnTargets="Build" Condition=" '$(Configuration)' == 'Release'">
<NUnit Assemblies="$(OutputPath)\Tsa.BaseTest.dll" ContinueOnError="false" ToolPath="C:\Program Files\NUnit 2.5.2\bin\net-2.0\" DisableShadowCopy="true" OutputXmlFile="$(OutputPath)\nunit-results.xml" />
</Target>
</code></pre>
<p>As you can see, it references OutputPath, which only the project knows--the solution doesn't have reference to $OutputPath, else I'd just put all the test targets into the "solution project".</p>
<p>Any suggestions on how I can get this to work?</p>
http://stackoverflow.com/questions/1751761/i-need-the-correct-teamcity-windows-tray-notfier-url0I need the correct TeamCity Windows Tray Notfier Urlskurge2009-11-17T21:03:29Z2009-11-17T21:27:59Z
<p>Hello, I have teamcity installed on my windows 7 machine. I use <a href="http://localhost:81/" rel="nofollow">http://localhost:81/</a> to connect when I am on the server. I have the tray notifier working on the server with the same URL. I have download the windows tray notifier on my laptop and tried using <a href="http://pcname:81/" rel="nofollow">http://pcname:81/</a> to connect put its says that the Server URL invalid and try again? We are connected to the same network? I have windows firewall off.</p>
http://stackoverflow.com/questions/1742793/ncover-installation1NCover installationildev2009-11-16T15:12:44Z2009-11-17T16:46:34Z
<p>Hi,</p>
<p>I'm installing NCover Complete trial version, and wondered if it's possible to install to a different folder and have NCover as part of the VCS? Otherwise the current version of NCover (v3.3.2) would be shared amongst all projects and I can invisage problems when upgrading NCover.</p>
<p>TIA</p>
http://stackoverflow.com/questions/1041153/teamcity-labeling-vcs-subversion-with-an-artifacts-file-version0TeamCity: labeling VCS (Subversion) with an artifact's file versiondr. evil2009-06-24T21:41:07Z2009-11-17T05:00:03Z
<p>I want to create create a label (tag) in the SVN with a file's version. </p>
<p>I'm already renaming the artifact by getting the file version of the main executable produced by the build. Such as: <code>MyInstaller-1.2.3.1.exe</code>. Now I want to create a tag in the SVN called <code>/tags/1.2.3.1</code>. I couldn't find a way to set such a thing in the labeling pattern.</p>
<p>Currently my labeling is just "%system.build.number%"</p>
<p>Any idea about how to do this?</p>
<p><em>I'm using TeamCity Professional Version 4.5.3 (build 9035)</em> </p>
http://stackoverflow.com/questions/1746386/teamcity-alternatives0TeamCity Alternativesmrduclaw2009-11-17T03:23:07Z2009-11-17T04:28:40Z
<p>I write a lot of little projects, and I'd like to use something like TeamCity for my build server(s). My problem with just using TeamCity itself is that the Professional version of only seems to allow for, at most, 20 projects. And since these projects are generally not-sellable, the price tag for the Enterprise edition is a bit much.</p>
<p>The projects are written in various languages, both managed and unmanaged and for various platforms (user- and kernel-land in both Windows and *nix). </p>
<p>The features that I'm looking for:</p>
<ul>
<li>To be able to manage projects for the multiple platforms that I support.</li>
<li>Integration with Subversion repositories.</li>
<li>For the Windows projects, I'd really like to just be able to point the software at my solution file (and not have to resort to building a series of commands that invoke cl or similar). (Bonus points)</li>
</ul>
<p>Could someone suggest an alternative that would also work? </p>
<p><strong>Update:</strong> Hudson looks pretty great. I just installed it on an Ubuntu box, is there a nice way for it to build my Windows projects? TeamCity does that whole build-agent thing, is there something similar with Hudson?</p>
<p>Thanks Again!</p>
http://stackoverflow.com/questions/1743806/teamcity-nunit-test-result-visualisation0TeamCity NUnit test result visualisationildev2009-11-16T17:57:24Z2009-11-16T18:15:57Z
<p>Hi,</p>
<p>Is there any way to produce visual results of NUnit tests from within TeamCity's "Tests" tab, currently my NAnt script outputs an .xml file of the results using the following task:</p>
<pre><code><nunit2 haltonfailure="false" failonerror="false" verbose="true">
<formatter type="Xml" extension=".xml" outputdir="${tests.output.dir}" usefile="true" />
<test assemblyname="${assemblies.output.dir}/TestApp.Tests.dll" />
</nunit2>
</code></pre>
<p>TIA</p>
http://stackoverflow.com/questions/1731107/team-city-command-line-build-runner2Team City Command Line Build RunnerBryan Rowe2009-11-13T18:48:52Z2009-11-16T14:46:25Z
<p>In Team City, we are currently using a command line build runner. While it works just fine, we don't get any output shown in the Team City log. We essentially get a notification that the process started, and that the process exited with a particular exit code.</p>
<p>Is there a way to pipe the output of the command line call to the log so that we can see it from the Team City UI?</p>
<p>EDIT: The command line call is just to devenv.com. I tried the same call inside a NAnt script hoping that it would somehow catch the output -- and it didn't. The reason I need to call devenv directly is that we have a handful of setup projects inside our solution.</p>
<p>EDIT 2: I have restarted our build server, and output is now correctly being thrown into the log.</p>
http://stackoverflow.com/questions/1534130/teamcity-msbuild-gallio-ncover-reporting0TeamCity MSBuild Gallio NCover ReportingJammer2009-10-07T20:54:37Z2009-11-15T23:00:02Z
<p>Hi All,</p>
<p>I'm a complete build system newbie through and through. I've been playing with this for about two weeks on and off now and I just can't crack it, I think I've reached a point where I need a fresh pair of eyes. Ultimately I'm aiming for having a new NCover coverage report (the summary one at least) in my TeamCity build project.</p>
<p>I've tried all manner of things, some demo's I've found online, the Extras from the NCover guys and read so much I'm pretty confused! I have the following task in my MSBuild script:</p>
<pre><code><Target Name="TestCoverage">
<Message Text="Test Assemblies @(TestAssemblies)" />
<Gallio RunnerType="NCover"
IgnoreFailures="true"
Files="@(TestAssemblies)"
ReportDirectory="Reports"
ReportTypes="xml"
ReportNameFormat="gallio_cover"
RunnerProperties="NCoverCoverageFile='$(MSBuildProjectDirectory)\Reports\codecoverage.xml';
NCoverArguments='//w %(TestAssemblies.RootDir)%(TestAssemblies.Directory) CoverageExcludeAttribute //ea //r:Local'" >
<Output TaskParameter="ExitCode" PropertyName="ExitCode"/>
</Gallio>
</Target>
</code></pre>
<p>The error message I see in the gallio_cover.xml report that is produced is:</p>
<pre><code><logEntry severity="info" message="Connected&#xA;Profiled process terminated. Profiler connection not established." />
<logEntry severity="error" message="Host process exited with code: 1" />
</code></pre>
<p>I've snipped off a load of stuff from the last message.</p>
<p>I've seen so many different examples of how this 'should be done' that I can't seem to track down the problem with how I'm calling NCover via Gallio.</p>
<p>Any ideas or input would be really appreciated.</p>
<p>Thanks,</p>
<p>James.</p>
http://stackoverflow.com/questions/1605478/running-a-program-on-a-remote-machine-as-part-of-continuous-integration0Running a program on a remote machine as part of continuous integrationpauloya2009-10-22T07:02:23Z2009-11-13T16:55:22Z
<p>We use TeamCity, nant and psexec to run a command on a remote machine as part of the release packaging. Everything works fine when I run the nant from the console but when running from teamcity psexec hangs (freezes) 50% of the times.<br />
I looked through many forums and there seems to be workarounds that increase complexity of the call and involve loosing the output and the errorcode of the command.<br />
Does anyone know an easier way to run a command on a remote machine?<br />
I don't mind setting up some application on the remote machine, like a telnet server, any advices on what to do?<br />
Thanks</p>
http://stackoverflow.com/questions/1404459/hudson-or-teamcity-for-continuous-integration6Hudson or Teamcity for continuous integration?pdeva2009-09-10T10:16:41Z2009-11-11T21:45:09Z
<p>We are a Java shop looking for a CI tool to use.
Both <a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a> and <a href="http://www.jetbrains.com/teamcity/" rel="nofollow">Teamcity</a> seem to be free but Teamcity seems slicker and with more support.</p>
<p>I was wondering why one would still use Hudson and if anyone could provide any argument for/against either?</p>
http://stackoverflow.com/questions/1557262/teamcity-path-to-external-reference-assemblies0TeamCity path to external reference assembliesDaveNay2009-10-12T22:20:43Z2009-11-08T13:19:28Z
<p>I have been working with setting up TeamCity, and I have almost everything working with the exception of being able to compile VS2005 solutions that have referenced assemblies that are outside of the solution path. I have our SVN repository structured as follows</p>
<pre>
Root
Libraries
Project 1
Trunk
Project 2
Trunk
</pre>
<p>Project 1 and Project 2 reference third party assemblies located in the Libraries. This works just fine from within the VS2005 IDE and when calling MSBuild on the solution files since the HintPath for all of the references look like this:</p>
<pre><code>..\..\..\Libraries\ThirdParty.dll
</code></pre>
<p>The problem I have encountered is that when TeamCity dies the checkout from SVN for Project 1 or Project 2, it places everything into internal directories that don't match the structure of the relative path given by the HintPath.</p>
<p>How do I go about clearing this up, either through a TeamCity configuration or configuring my solutions/directory structure differently? Either one will work for my needs.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1688061/continuous-integration-with-teamcity-and-clearcase3Continuous Integration with Teamcity and Clearcasezac2009-11-06T14:47:32Z2009-11-06T15:14:06Z
<p>Has anybody successfully integrated Clearcase with Teamcity (which advertises Clearcase support) to realize a productive continuous integration build environment on a decent size project?</p>
http://stackoverflow.com/questions/1680025/can-teamcitys-net-nunitaddin-process-csproj-files0Can TeamCity's .NET NUnitaddin process csproj files?Fresh2009-11-05T11:41:33Z2009-11-06T12:05:13Z
<p>To cut to the chase, can the TeamCity .NET NUnitLauncher process Microsoft csproj files?</p>
<p>I ask this question because of the following.</p>
<p>I have a NANT build script. In this script I have a number of tests which use nunit-console.exe (which ships with NUnit v2.5.2).</p>
<p>An example of a test in my Nant build file is:</p>
<pre><code><target name="x.Commons.Tests" depends="xCore">
<exec program="${nunit-console.exe}" commandline="${nunit-console.args} Core\x.Commons.Tests\x.Commons.Tests.csproj" failonerror="${nunit-console.failonerror}"/>
</target>
</code></pre>
<p>FailOnError is set to false, and the nunit-console.args is set to '/nologo'.</p>
<p>When I run these tests on my local machine I get test output. However when I instruct TeamCity to build my NAnt build file, and instruct it to process the test targets I get no test output to TeamCity. I can see in the log that nunit-colsole.exe is producing test result output but Im not seeing this in the TeamCity dashboard.</p>
<p>After reading around I found some articles indicating that extra steps are required to get this input into TeamCity. Hence I modified my test to:</p>
<pre><code> <target name="x.Configuration.Tests" depends="xCore">
<mkdir dir="C:\Tools\NUnit\bin\net-2.0\addins"/>
<copy file="${teamcity.dotnet.nunitaddin}-2.5.0.dll" todir="C:\Tools\NUnit\bin\net-2.0\addins"/>
<copy file="${teamcity.dotnet.nunitaddin}-2.5.0.pdb" todir="C:\Tools\NUnit\bin\net-2.0\addins"/>
<exec program="${nunit-console.exe}" commandline="${nunit-console.args} Core\x.Configuration.Tests\x.Configuration.Tests.csproj" failonerror="${nunit-console.failonerror}"/>
</target>
</code></pre>
<p>Note that I also made sure the tag contains an entry of 'addins'.</p>
<p>However, as before I can see that the tests are working as the nunit-console.exe displays its results in the log, but Im getting no output to TeamCity.</p>
<p>An answer to my question, or any help would be appreciated!</p>
http://stackoverflow.com/questions/1395498/stop-iis-7-application-pool-from-build-script1Stop IIS 7 Application Pool from build scriptAndrew Hanson2009-09-08T18:22:41Z2009-11-05T14:24:53Z
<p>How can I stop and then restart an IIS 7 application pool from an MSBuild script running inside TeamCity. I want to deploy our nightly builds to an IIS server for out testers to view.</p>
<p>I have tried using appcmd like so:</p>
<pre><code>appcmd stop apppool /apppool.name:MYAPP-POOL
</code></pre>
<p>... but I have run into elevation issues in Windows 2008 that so far have stopped me from being able to run that command from my TeamCity build process because Windows 2008 requires elevation in order to run appcmd.</p>
<p>If I do not stop the application pool before I copy my files to the web server my MSBuild script is unable to copy the files to the server. </p>
<p>Has anybody else seen and solved this issue when deploying web sites to IIS from TeamCity?</p>
http://stackoverflow.com/questions/754195/teamcity-and-jira5TeamCity and JIRA ?ShaChris232009-04-15T23:43:20Z2009-11-04T21:58:20Z
<p>Is it possible for TeamCity to integrate to JIRA like how Bamboo integrates to JIRA? I couldnt find any documentation on JetBrains website that talks about issue-tracker integration.</p>
<p>FYI: I heard that TeamCity is coming out with their own tracker called Charisma. Is that true?</p>
http://stackoverflow.com/questions/1668968/teamcity-environment-variables0TeamCity Environment VariablesTim2009-11-03T17:38:18Z2009-11-04T15:30:54Z
<p>How do you access TeamCity environment variables through the post-build event window in visual studio?</p>
<p>What type of evaluation can be done to make sure the build is happening on the build server and not locally where the environment variables do not exist?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/247478/team-city-problem-with-unstopped-instance-of-ie-during-watin-test2Team City problem with unstopped instance of IE during watin testandreja2008-10-29T16:28:43Z2009-11-04T10:36:49Z
<p>We are using Team City and I noticed problem during running Watin test. Sometimes some instance of IE randomly just don't stop in task manager on build server, even if test closes all opened instances. This causes failure of all tests that follows.
We tried with script that kills all instances of ie before this test starts runing, but that can't prevent random unstopped instances of ie that crashes all tests. </p>