We're considering migrating from CruiseControl/CruiseControl.NET to TeamCity.
A portion of our product is a Cocoa app, and I need to figure out if I want to try to migrate it to TeamCity as well, or if it would be better to leave it running under CruiseControl.
Everything I've found so far (including the teamcity-xcode plugin) refers t...
I have a project on a TeamCity v5. build server. The project builds fine on the server using VisualStudio 2010 solution setting, but then fails to run any unit tests, failing with error
Blockquote
error : c:\TeamCity\buildAgent\plugins\dotnetPlugin\bin\JetBrains.BuildServer.NUnitLauncher.exe "@@" C:\TeamCity\buildAgent\temp\buildTm...
I just upgraded my project to Asp.Net 4, from 3.5. When the build kicks off from TeamCity, I get the following error:
[Project "Website.metaproj" (Rebuild target(s)):] C:\Windows\Microsoft.NET\Framework\v4.0.30319\aspnet_compiler.exe -v /Website -p Website\ -u -f PrecompiledWeb\Website\
[12:11:50]: [Project "Website.metaproj" (Rebuild ...
Question
Is there a way to notify teamcity when ever someone does a commit to a repository on visual svn? This is so every time someone commits to the repository a build in teamcity will trigger immediately without the developer having to wait for polling to kick in on its set time interval.
...
How do I setup visualsvn server to trigger teamcity to build a specific project after someone commits to it while obeying the set quiet period?
Right now I am using this in the post commit hook of visual svn server:
wget http://<user name>:<user password>@<server address>/httpAuth/action.html?add2Queue=<build type Id>
The problem...
I'm trying to install VCSupdate.zip in teamcity but the instructions online are for TeamCity 4. I'm using the newest version which is 5.1.2 so it doesn't have the data directory like the old one does. How do I install this plugin? Also, if i need to restart teamcity how do I do that?
...
I'm about to upgrade to Visual Studio 2010, and I'm learning that there are now a few options for deploying web application projects. I've been using Web Deployment Projects in 2008, and my initial thought was to do the same in 2010.
Is there any advantage to using Publish or the Web Deployment Tool over Web Deployment Projects?
I nee...
I'm using TeamCity 5 with Git VCS and Visual Studio 2010 SLN build runner.
My solution has a class library proj containing a number of XUnit 1.5 tests. The post build event on this project runs the tests
$(SolutionDir)libs\XUnit-1.5\xunit.console.exe $(SolutionDir)MyTestProj\$(OutDir)\MyTestProj.dll
This works fine for running all my ...
Visual Studio 2010 has a Publish command that allows you to publish your Web Application Project to a file system location. I'd like to do this on my TeamCity build server, so I need to do it with the solution runner or msbuild. I tried using the Publish target, but I think that might be for ClickOnce:
msbuild Project.csproj /t:Publish ...
We have a lot of tests. I can break these up so that they run on seperate agents after an initial compile build happens, but is there a way I can recombine these results? Having 8 build configurations that all need to be green makes it hard to see if you've got one ubergreen build.
Is there a way in TeamCity to recombine / join builds ...
I currently have TeamCity CI installed on a windows server. I want to install a build agent on my desktop on windows xp. I downloaded the files the buildagent.zip file and unzipped it and place the folder in my c: drive. I renamed the properties file to buildAgent.properties and changed the server url to the teamcity ci url and change...
Hi,
I am trying TeamCity as an alternative to CruiseControl.NET at the moment. However, I'm having real trouble with using it with Visual Sourcesafe (I know we'll be moving off this in near future!).
However in the VSS Settings in the "Path to srcsafe.ini" field I am getting the following error when I click on Test Connection:
Error: F...
In my CruiseControl instances, I have version controlled the ccnet.config file.
When I want to update CruiseControl, I run an "update config" job which fetches the config from version control.
In this manner, the very build process of a release is configuration managed.
I am wondering how to achieve these goals effectively under Tea...
Hi all
I'm currently using MSBuild+Community Task's to change the AssemblyVersion, AssemblyFileVersion + more in AssemblyInfo.cs, via TeamCity and it works like a charm :).
However I would like to commit the modified AssemblyInfo.cs back to the repo.
How can I do that?
I tried with the "SvnCommit" task from Community Tasks, but on th...
When i run "Run Personal Build" from the TeamCity addin to visual studio 2005 it appears to connect correctly as i can use the my changes to show my additions. However, in the Personal build window, the right window (i'm guessing that this is where you'd select a build configuration is blank) And as such, i cannot select a build configur...
I am trying to install a build agent on linux for teamcity. I downloaded the buildAgent.zip file and extracted it. I renamed the buildAgent.dist.properties file to buildAgent.properties as instructed by the teamcity documentation. I edited the file with the server url and the port number i will be using(ex: 150). On the teamcity serv...
I am currently researching using the TeamCity CI software for our comapanies CI automation needs but have had trouble finding information about using different build scripts with TeamCity. We have C++ projects that need to have build/test automation and we currently have licenses for TeamCity. I have looked into using scons for the build...
I seem to be unable to install a build agent on our TeamCity 5.1.2 build server that is compatible with a VS2010 (sln) build configuration.
Under "Build Runners", the following runners are listed:
Ant: Runner for Ant build.xml files
Duplicates finder (.NET): C# and VB duplicate code finder
Command Line: Simple command execution
...
I have written a rake task which builds an asp.net application using Albacore:
msbuild :build do |msb|
puts "Running local build"
msb.properties :configuration => :Release, :outdir => File.dirname(__FILE__) + "/output/"
msb.targets :Build
msb.solution = 'App.sln'
msb.verbosity = 'quiet'
end
Running this locally wo...
We want to have our build server send the output of each build to
C:\Projects\{project name}\build\{build configuration}\.
To accomplish this, I set the Build Output path property for my projects to that in Visual Studio 2010, and build locally to make sure everything works. When I do so, visual studio changes the path to a relative one...