I've set up our SVN repository like the Subversion book suggests, and this is also how my previous companies have done it. It looks something like this:
/trunk
/branches
/tags
/extlibs
/docs
where the first three are pretty obvious, and extlibs is for 3rd party assemblies that we wouldn't typically recompile ourselves.
All of this w...
I have been trying to get my MBUnit tests suite to work on Team City for many days now without any success.
My solution builds no problem. The program is with my tests. After googling for Gallio integration with Team City I tried many ways to make this thing work and I think I am close but need help.
I have included the gallio bin dire...
I asked a question this morning about an integration problem between Gallio and Team City. I changed the msbuild file to use the proper syntax with the latest Gallio build script API. Thank you for that Jeff Brown but now when I tried to build the application on Team City I get the following error :
An unexpected error occurred during...
We have a Continuous Integration environment setup with TeamCity and subversion. TeamCity
gets the latest source from svn and does a build (Visual Studio) on every commit.
Sometimes we get the following TeamCity error when the build runs. Doing a couple of force builds gets TeamCity running succesfully.
Build errors
[12:35:24]: Pat...
Is there a way to have MSBuild create an instance of IIS on another remote machine?
I do the builds (which occur locally using TeamCity AFAIK), but would like the code to be pushed up to our testing server once the build is completed. I am using IIS 6.x (Windows XP dev and Windows 2k3 Server for testing).
...
I am running TeamCity on a virtual machine. I have installed the new Visual Studio 2010 release yesterday and converted my VS 2008 projects. I also have installed .NET Framework 4 on my virtual machine.
Before yesterday all my projects were building succesfully on the CI server but since I installed VS 2010 I get the following error me...
Hi guys,
I need some help with my MSBuild file i created a while ago.
All i want to do is build the solution, publish a project inside the solution and than copy the files to a directory
At the moment when i set Teamcity to .net 4 msbuild, msbuild 4.0 tools and for 86 i get an error stating
error MSB4067: The element beneath eleme...
I'm trying to create a MSBuild script for running in TeamCity. I have a problem when I want to copy the files generated by the Project Build to another server. I tried to map that server as X:\ but I got the error that it can't find that path. Can anybody help me?
Thanks
...
I have this task that creates a service:
Target Name="InstallService" DependsOnTargets="CopyFiles"
Exec Command="sc \ \remotecomputer create "ServiceHost" binPath= "E:\ServiceHost.exe" DisplayName= "ServiceHost""
WorkingDirectory="c:\" ContinueOnError="false"
/Target
The problem is that when I run this script it doesn't know the \ \re...
I would like to include a list of changed files in the TeamCity 5.1 email notification which is sent out to my team after a successful or failed build. I have reviewed the Customizing Notifications in TeamCity 5.1 documentation and I have looked at the .ftl template files found within the config\_notifications\email folder, but I haven't...
As per my question here...
http://www.jetbrains.net/devnet/message/5261667#5261667
Is it possible to use TeamCity with an Idea 9 project project that has 3 .iml modules where 2 are Java based and 1 in an Android module?
...
Hi
I'm trying to get my build to trigger only when i create a Tag in Mercurial. The way im trying to do this is by creating an additional Build Config (Tag Conf) for my project where I set the VCS build trigger to:
+:/.hgtags (Trigger only when tags are updated)
-:. (Do not trigger on any other files)
Whe...
We have a very large svn external containing about 30,000 500k files. This checkout can take a long time and we would like to see the progress in the TeamCity logs as it happens.
Is there a way to use a more verbose logging when doing the svn checkout than just....
[19:26:00]: Updating sources: Agent
side checkout... [19:26:00]: ...
I'm new to Continuous Integration. I want an advice with what tool should I start deal with. I see that this is the biggest tools right now: CruiseControl.NET, TeamCity and Visual Studio Team System.
I'm using this tools: Visual Studio 2010, Mercurial, NAnt, NUnit.
...
I'm using NUnit to test View Models in a WPF 3.5 application and I'm using the BackgroundWorker class to execute asynchronous commands.The unit test are running fine with the NUnit runner or ReSharper runner but fail on TeamCity 5.1 server.
How is it implemented :
I'm using a ViewModel property named IsBusy and set it to false on Backg...
I what to run may watin tester in silent mode and how I can get Team City to run my tests ?
...
I have teamcity project that use mercurial. I did a few manually changes to the files in teamcity/buildAgent/work directory. The problem is that now I cannot update the files to the files in the repository.
How can I force re checkout for the teamcity? Is there any option to get rid of the old checkout?
...
Im trying to get TeamCity to work with the github server for our xcode projects.
I've got the git server working and now i'm stuck at the Build Runner Settings.
i downloaded the teamcity-xcode plugin from http://github.com/orj/teamcity-xcode
and moved it into the ~/.BuildServer/plugins folder.
is there any kind of tutorial how t...
I want to send an email if the build fails to the developers, with the fail details. I'm also wants to send a success email to the project admins, etc with the address to the new test application.
What is the proper tool to send the actual mail, TeamCity or NAnt?
...
I am running TeamCity build 5.1.1 on a virtual machine that also hosts our SVN environment. A team I support has recently made the move from Visual Studio 2008/Silverlight 3.0 to Visual Studio 2010/Silverlight 4.0 and when investigating how to do continuous integration with Visual Studio 2010 solutions/projects, it is not as cut and drie...