cruisecontrol.net

Pre-build task - deleting the working copy in CruiseControl.NET

ε祈祈猫儿з 提交于 2019-12-01 03:54:39
I'm currently in the process of setting up a continuous integration environment at work. We are using VisualSVN Server and CrusieControl.NET. Occasionally a build will fail and a symptom is that there are conflicts in the CruiseControl.NET working copy. I believe this is due to the way I've setup the Visual Studio solutions. Hopefully the more projects we run in this environment the better our understanding of how to set them up will be so I'm not questioning why the conflicts happen at this stage. To fix the builds I delete the working copy and force a new build - this works every time

Running MStest in cruise control .net build server

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-01 03:19:10
问题 I'm trying to setup cruisecontrol.net to work with our existing projects. The projects use the visual studio 2008 testing tools (running as .net 2.0). During the actual build process I get several error messages, most or which are: Type 'TestClass' is not defined. I'm assuming that this is because I don't have the testing framework installed on my build server. I'd rather not just copy bits from my dev machine (that always feels a bit hacky) and I'd also rather not install visual studio on

How to use MsTest in Continuous Integration without VS?

对着背影说爱祢 提交于 2019-12-01 02:46:10
I my problem is quite simple, i have a CI server wich run msbuild and mstest. The problem is that the Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll doesn't exist( and i thinks other file related to mstest...) if we don't install VS in the server wich is pretty stupid for a CI server... Anybody have a solution about this problem ? Ruben Bartelink Unfortunately, there is no supported or easy way around having to install VS on the build agent machine in 2005 or 2008 ( There will be a test agent installer in 2010 ). UPDATE: See this post from Steve Smith for more info which says pretty

Pre-build task - deleting the working copy in CruiseControl.NET

不羁岁月 提交于 2019-12-01 00:37:35
问题 I'm currently in the process of setting up a continuous integration environment at work. We are using VisualSVN Server and CrusieControl.NET. Occasionally a build will fail and a symptom is that there are conflicts in the CruiseControl.NET working copy. I believe this is due to the way I've setup the Visual Studio solutions. Hopefully the more projects we run in this environment the better our understanding of how to set them up will be so I'm not questioning why the conflicts happen at this

Continous Integration Server in Windows Azure

て烟熏妆下的殇ゞ 提交于 2019-11-30 23:18:28
I would like use a continuous integration system in my projects. However, I don't want to use a server sitting in my office, instead I'd like my continuous integration server to run on Windows Azure. Has anyone set this up? Are there recipes to host Hudson or CruiseControl.Net (or any other CI system) within Azure? We use the Build Manager in Team Foundation Server to push our automated builds to Azure. We set up our Azure hosted services to allow for Web Publish through remote desktop using this plugin - http://dunnry.com/blog/2010/12/20/UsingWebDeployWithWindowsAzure.aspx You do not need to

How do I share a label value between multiple CruiseControl.NET builds?

心不动则不痛 提交于 2019-11-30 15:35:55
I have two projects set up in CruiseControl.NET: CI build and nightly build. Both of them execute the same NAnt script, but with different parameters. The CruiseControl.NET label (currently generated by the DefaultLabeler ) is embedded into AssemblyInfo as the build part of the version (for example, MajorVersion.MinorVersion.CCNET_Label.SVN_Revision ). For more consistent versioning I would like both projects to share the same CruiseControl.NET label value. I have investigated the labelers that are available as part of the CruiseControl.NET installation, but I could not find one that does what

how to Implement Cruise Control with QTP?

自闭症网瘾萝莉.ら 提交于 2019-11-30 15:30:12
I would like to integrate QTP with Cruise Control, which I have done so far, i'm stuck at the reporting part. I would like to somehow report back to Cruise Control with the results, how can I accomplish this? Please help? I remember there was a useful series on how to integrate CCNET with various build and testing tools including QTP. This is what I bookmarked: Part 1: Continuous Integration using MSBuild, CruiseControl.NET, FxCop, NUnit, NCover + Subversion - From the software development trenches But somehow it seems to have vanished. Today I found the updated version by accident. It doesn't

CruiseControl.NET email publisher problem

拈花ヽ惹草 提交于 2019-11-30 15:28:38
I want to set up ccnet to: Send mail to committers after each build (regardless of the status) Send mail to all other developers when the build breaks or is fixed With every new version of CCNet the email publisher gets refactored (and supposedly improved), but I still have the same problem: only the committers get notified - if the build breaks, other developers don't get the email message . So either I don't get the system, or there is a long-unfixed bug in the email publisher. I'm using the v1.4.4.83. My example configuration (I removed the irrelevant stuff): <email includeDetails="true">

MSDeploy all configuration [.config files] in one package

不想你离开。 提交于 2019-11-30 14:56:46
We have 4 different environments at the moment (Lab, Test, Stage, LIVE) and we have implemented automatic deployment using Nant/CC.Net. I am investigating and doing some research as to what can be done more efficiently with new MSDeploy tool. What I want to achieve is to create a package with a Configuration folder inside which we will have all the different configuration files for all the possible environments (basically adding all config transform files) What I want to achieve is automatic deployment in our enterprise environment where development team hasn't got any access to the server

NUnit vs Visual Studio 2010's MSTest?

岁酱吖の 提交于 2019-11-30 12:38:11
问题 I realise that there are many older questions addressing the general question of NUnit v MSTest for versions of Visual Studio up to 2008 (such as this one). Microsoft have a history of getting things right in their 3rd version. For MSTest, that is VS2010. Have they done so with MSTest ? Would you use it in a new project in preference to NUnit? My specific concerns: speed running tests within CruiseControl.NET (either commandline or MSBuild task) code coverage reports from CC.NET can you run