cruisecontrol

SVN commit using cruise control

冷暖自知 提交于 2019-12-11 21:57:30
问题 i am using cruise control to automate the svn commit process. but the execution of svn commit command restores the files which i deleted from my working copy. the way i am doing is. 1. delete some files in my working copy.( no. of files in my WC is less than no. of files in repository) 2. execute svn command using cruise control. <exec executable="svn.exe"> <buildArgs>ci -m "test msg" --no-auth-cache --non-interactive</buildArgs> <buildTimeoutSeconds>1000</buildTimeoutSeconds> </exec> result:

CruiseControl or CruiseControl.NET

只谈情不闲聊 提交于 2019-12-11 04:50:02
问题 I've been using the latest release of CruiseControl.NET (1.6.7981.1). It works fairly well, but the web dashboard is not the greatest and I dislike how the service refuses to start if any of the projects files have incorrectly configured XML. What are my options? How about using the main CruiseControl instead? Will it play nicely with MSBuild? Will it format the MSBuild results reasonably like the CruiseControl.NET "MSBuild Report"? I see that it hasn't had any releases since September 2010.

Pass arguments to svn when using CruiseControl.net

半世苍凉 提交于 2019-12-08 02:27:20
问题 I would like to pass arguments to SVN while I'm using CruiseControl.net. I have the following sourcecontrol block in my ccnet.config file: <sourcecontrol type="svn" username="username" password="password"> <trunkUrl>https://www.example.com/blah/blah/blah</trunkUrl> <workingDirectory>C:\Subversion\blah\</workingDirectory> </sourcecontrol> Is there anyway that I can alter the sourcecontrol block so that is passes some arguments to svn? 回答1: I found my own answer. Apparently the only way I could

Cruise Control service error: Cannot construct net.sourceforge.cruisecontrol.BuildLoopInformation as it does not have a no-args constructor

给你一囗甜甜゛ 提交于 2019-12-07 01:24:38
问题 When attempting to run Cruise Control as a service (in this case on Windows 7, 64bit) I receive the error: com.thoughtworks.xstream.converters.ConversionException: Cannot construct net.sourceforge.cruisecontrol.BuildLoopInformation as it does not have a no-args constructor The full error message is: INFO | jvm 1 | 2012/08/27 17:16:28 | 2012-08-27 17:16:28.262::WARN: /dashboard/buildloop/listener INFO | jvm 1 | 2012/08/27 17:16:28 | com.thoughtworks.xstream.converters.ConversionException:

Cruiscontrol Force Build After Build Fails

眉间皱痕 提交于 2019-12-06 20:34:24
buildafterfailed="true" does'nt work in .net, How can I do the same thing? I'm trying to have cruisecontrol triggers force builds until the build is successful. You can use Project Trigger with triggerStatus set to Failure and have a project monitor itself. buildafterfailed is specific to CruiseControl, from which CruiseControl.Net has diverged quite a lot. As a side note - doing this either way is probably a bad idea. 来源: https://stackoverflow.com/questions/1088040/cruiscontrol-force-build-after-build-fails

Which continuous integration software do you use? [closed]

送分小仙女□ 提交于 2019-12-05 23:29:18
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 6 years ago . Google says there are: Jenkins ( first impression: not lightweight ) Cruise control ( first impression: not lightweight ) Bitten ( seems to be dead, last ticket >8 months old) BuildBot But BuildBot seems a bit outdated, offering no statistics, not very intuitive to configure.

How to redirect stdout stderr in an ant script?

微笑、不失礼 提交于 2019-12-05 20:08:00
问题 I am triggering an ant script (via cruise control), and would like to be able to dump the std out and std err for a particular ant target to a plain text file . Yes, I am aware that cruise control already does maintain an XML log file containing this information (among many other things), but for portability reasons, I need this to happen from the ant script itself. Is this possible, and if so, how to do it? Many thanks! 回答1: The recorder task may be able to do what you want: <record name=

c++ continuous integration with performance metrics

让人想犯罪 __ 提交于 2019-12-04 15:17:47
问题 I want to set up a continuous integration and test framework for my open source C++ project. The desired features are: 1. check out the source code 2. run all the unit and other tests 3. run performance tests (these measure the software quality - for example how long does it take the system to complete the test) 4. produce a report based on 3. and 4. daily 5. archive the reports for future reference To implement this, which test framework and what continuous integration process would you

Handling svn locks / cleanup when using CruiseControl .NET and Subversion

非 Y 不嫁゛ 提交于 2019-12-04 14:33:32
I am using CruiseControl .NET with the Subversion source control plugin to automatically build our project. Some of the projects are automatically checking for modifications, but occasionally the check fails and CruiseControl .NET marks the project with an "Exception": ThoughtWorks.CruiseControl.Core.CruiseControlException: Source control operation failed: svn: Working copy 'xxFilename' locked svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for details) After this I must manually log into the server and do a svn cleanup on the folder before the project will build again. Is

Which continuous integration software do you use? [closed]

烂漫一生 提交于 2019-12-04 04:45:49
Closed . This question is opinion-based. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it can be answered with facts and citations by editing this post . Closed 6 years ago . Google says there are: Jenkins ( first impression: not lightweight ) Cruise control ( first impression: not lightweight ) Bitten ( seems to be dead, last ticket >8 months old) BuildBot But BuildBot seems a bit outdated, offering no statistics, not very intuitive to configure... Features we are interested in are: Multi platform support for build slaves: Linux, Mac