cruisecontrol.net

Get list of files from tfs changeset

↘锁芯ラ 提交于 2019-12-20 04:16:59
问题 I need to get a list of changed files from chageset only and exclude all other junk. I can get this information from the command tf changeset /i $(changesetnumber) but besides of List of files i have a lot of other information which I dont need for my purposes. Or maybe someone can tell how to get this list of files from ccnet so I can send it to my msbuild.proj file via property. 回答1: You could use the TFS API to get the information you want. Here's some example C# code that will select the

How to use MsTest in Continuous Integration without VS?

老子叫甜甜 提交于 2019-12-19 05:15:24
问题 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 ? 回答1: 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

Continous Integration Server in Windows Azure

余生颓废 提交于 2019-12-19 03:59:06
问题 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? 回答1: 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

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

自作多情 提交于 2019-12-18 16:57:53
问题 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

What do you use as a good alternative to Team System?

房东的猫 提交于 2019-12-18 10:41:09
问题 I would like to gauge what solutions other people put in place to get Team System functionality. We all know that Team System can be pricey for some of us. I know they offer a small team edition with five licenses with a MSDN subscription, but what if your team is bigger than five or you don't want to use Team System? 回答1: I'm stunned that nobody has mentioned the free and excellent TeamCity product from JetBrains. It includes: Continous Integration Software Build management Project

CI: Hudson with .Net vs CruiseControl.Net [closed]

可紊 提交于 2019-12-17 15:24:08
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I work for a .net shop looking to integrate a CI server. From what I've seen, Hudson seems to be the most popular choice. Considering

CruiseControl Build times degrade on vmware workstation

不羁的心 提交于 2019-12-13 21:02:45
问题 I have a very strange problem and my last hope for help I suspect comes from this community. I have a build system that incorporates compiling three different elements of a wise installer package. The symptoms that I am seeing is that build times for these projects specifically degrade over time on the virtual machines. This is occurring on multiple virtual machines and has been doing so since November of 2013. Fortunately I had a habit of cloning the virtual machines and had a clone of the

How to specify the platform in devenv build CruiseControl.net

橙三吉。 提交于 2019-12-13 18:47:22
问题 When building with msbuild we can give the platform as below <msbuild> <buildArgs>Platform=x86</buildArgs> </msbuild> Do you know how to speficify the platform if we are using devenv? <devenv> ??? </devenv> 回答1: Use this syntax: <devenv> <configuration>Configuration|Platform</configuration> </devenv> for example: <devenv> <configuration>Debug|Win32</configuration> </devenv> 来源: https://stackoverflow.com/questions/5905652/how-to-specify-the-platform-in-devenv-build-cruisecontrol-net

How to get the final build status for a CCNet build using the Remote API

萝らか妹 提交于 2019-12-13 06:23:03
问题 I've been trying to write a simple Java library to emulate the Remote assembly from GitHub. To do this, I looked at the XML going over the wire from the .Net version, and emulated that in Java. I got "force build" working and wanted to poll the server for the results of the build when I ran into problems. At first I thought it was my Java code (the usual suspect), but then I could see that the same problem seemed to exist with the .Net library. My C# test code looks like this: public void

Selenium tests, Continuous Integration. The HTTP request to the remote WebDriver server for URL http://localhost

我只是一个虾纸丫 提交于 2019-12-13 05:59:50
问题 I am running selenium tests using a cruisecontrol and lot of tests have failed with the same error: OpenQA.Selenium.WebDriverException : The HTTP request to the remote WebDriver server for URL http://localhost:7055/hub/session/18ebd740-f48e-4be2-bd84-a24f645cad2a/element/%7Bf6d3eb90-dadb-46f1-83e9-d022ccfc81fb%7D/click timed out after 60 seconds. ----> System.Net.WebException : The operation has timed out TearDown : System.ArgumentException : Illegal characters in path. at OpenQA.Selenium