cruisecontrol.net

How do I setup Multiple Triggers for Cruisecontrol.NET?

白昼怎懂夜的黑 提交于 2019-12-10 11:47:13
问题 I'm new to CruiseControl.net and am attempting to setup it up for a project I'm working on. The project is kept under subversion, but the whole project is made up of the core project, and several components, each one a separate subversion project, each with a trunk, possible branches and tags. I need to setup cruisecontrol.net so that a change in the main core project subversion folder as well as any of the included components triggers a build. Obviously if the commit consists of files

Getting CC-Tray to work

女生的网名这么多〃 提交于 2019-12-10 02:33:50
问题 I am trying to get cc-tray to work instead of using the web dashboard. I'm not sure how I can get the correct url for the server that my cruisecontrol is running on and I can't find any useful documentations online. Can anyone help? Thanks 回答1: It depends a bit on the version you use. It is always a good idea to use the version of CCTray that you download from your running instance of the CCNet dashboard (on the dashboard, in the left column, you'll find a link 'Download CCTray'). Then it is

HTTP 500 response connecting CCTray to CC.NET server via dashboard via RawXmlMessage.aspx

a 夏天 提交于 2019-12-10 01:11:50
问题 I'm using CC.NET 1.6 server and its corresponding CCTray connecting happily via remoting but need to change to use the dashboard connection via HTTP so that I can start farming the URL out to developers. Putting my dashboard URL into CCTray: http://localhost/CruiseControl/server/local/ViewServerReport.aspx Results in CCTray returning Failed to connect to server: The remote server returned an error: (500) Internal Server Error. If I check my IIS logs, I can see the request was turned into a

Configuration does not have any version information - assuming the configuration is for version 1.5

你说的曾经没有我的故事 提交于 2019-12-09 14:47:41
问题 Where in ccnet.config set version? I search and read docs but there is no version mentioned. 回答1: You can add this line in your config file: <cruisecontrol xmlns:cb="urn:ccnet.config.builder" xmlns="http://thoughtworks.org/ccnet/1/5"> It is mentionned in this tracker CCNET-1870 : http://jira.public.thoughtworks.org/browse/CCNET-1870 回答2: @Andy I got the same error in one of my configurations. If you use cb:include in your configuration file, you should also give xmlns=version-url cb:config

Make OpenCover reports available in CruiseControl.NET

蓝咒 提交于 2019-12-09 06:09:40
问题 I'm trying to integrate OpenCover with CruiseControl.NET. At this point I've modified by build system so it runs my nunit tests under OpenCover. I then generate Xml and Html reports from those using ReportGenerator. Assuming it's possible to integrate the reports generated by ReportGenerator into the CruiseControl.NET webapp, how do I integrate the two? NCover has it's own NCoverReporting task that can be used, but as I'm not running NCover I can't compare its output with the XML reports

Is it possible to send parameters into Nant task?

大城市里の小女人 提交于 2019-12-08 13:04:18
问题 I would like to have a nant task which builds code into either a dev/test folder depending on the type of build. Rather than have repeated tasks/targets with just different folders I would like to call Nant task from CruiseControl.NET with a different parameter dev / test. The nant task would then define a property for the output folder depending on the input parameter. I think I needs some kind of 'if' statement to test the parameter and define the correct one. Any ideas how to do this?

CruiseControl.Net CCNetWorkingDirectory parameter problem

点点圈 提交于 2019-12-08 09:50:16
问题 I'm working with the latest CruiseControl.Net 1.5.7256.1. I'm trying to use one of the system parameters, CCNetWorkingDirectory under sourcecontrol block and the project failed to recognize this parameter. <sourcecontrol type="svn"> <trunkUrl>https://padev/svn/physical/Source</trunkUrl> <workingDirectory>$[CCNetWorkingDirectory]\SVN\Source</workingDirectory> <username>ccnet</username> <password>hidden</password> </sourcecontrol> I also tried it as $CCNetWorkingDirectory, $

How to configure Cruise Control.Net to show proper error in Web Dashboard?

ぃ、小莉子 提交于 2019-12-08 09:43:51
问题 We have setup Cruise Control.Net to build .Net projects from source control. Problem is that when the build fails the error log shows a huge build xml and we struggle to find out the actual error. How to configure Cruise Control to show error in more readable format? 回答1: Make sure that a xmllogger is included in your ccnet configuration and try viewing the build results via ccnet's web dashboard. See example of failed build output. 回答2: To make it even more readable (bring the project name

CruiseControl.net cronTrigger confusion

扶醉桌前 提交于 2019-12-08 07:17:28
问题 I have setup 2 projects in cc.net for the same web application. A continuous integration project that uses an interval trigger and works fine and a "nightly build" project that uses a cronTrigger. The nightly build essentially builds and deploys the staging/testing server so that people can test without being interrupted with a rebuild every time someone does a commit. What i want to do is have it auto build every morning at 6 am and allow force builds if you want to build any other time. THe

Using NT Auth with CruiseControl and Subversion

心已入冬 提交于 2019-12-08 07:17:03
问题 I am trying to have my source control block in my ccnet.config file access SVN without passing in the credentials. Instead I want the user that is configured in the ccnet service to be used. So, I just didn't include the username and password tags in the sourcecontrol block thinking it would work. It doesn't and instead I get the error: Source control operation failed: svn: OPTIONS of 'http://xxx.xxx.com:8888/svn/SourceCode/Trunk': authorization failed (http://xxx.xxx.com:8888) If I then put