User Jeffrey Fredrick - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T09:27:57Zhttp://stackoverflow.com/feeds/user/35894http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/343162/is-scrum-evil21Is Scrum Evil?Jeffrey Fredrick2008-12-05T08:01:47Z2009-11-04T16:52:06Z
<p>At the last <a href="http://www.citconf.com/" rel="nofollow">CITCON</a> Europe we had a great session on the topic "<a href="http://ericlefevre.net/wordpress/2008/10/07/scrum-is-evil/" rel="nofollow">Is Scrum Evil?</a>" Reading James Shore's blog post on "<a href="http://jamesshore.com/Blog/The-Decline-and-Fall-of-Agile.html" rel="nofollow">The Decline and Fall of Agile</a>" brought this session back to mind.</p>
<p>These are serious doubts being raised by people deep deep into agile. For people on the outside the judgements can be even more harsh, as in this blog post "<a href="http://lukehalliwell.wordpress.com/2008/11/16/the-agile-disease/" rel="nofollow">The Agile Disease</a>".</p>
<p>What is your current view of Scrum and/or Agile and its current influence on software development?</p>
<p>(This isn't about what agile meant 5+ years ago, this is about its influence today. So it isn't so much Scrum vs. RUP but more is Scrum the new RUP?)</p>
http://stackoverflow.com/questions/1460799/monitoring-code-metrics-in-a-multi-language-product/1478212#14782121Answer by Jeffrey Fredrick for Monitoring code metrics in a multi-language productJeffrey Fredrick2009-09-25T16:06:33Z2009-09-25T16:06:33Z<p>If you're using the Java CruiseControl you can get the kind of metrics you want easily. You can include arbitrary .xml in the log file with <a href="http://cruisecontrol.sourceforge.net/main/configxml.html#merge" rel="nofollow"></a> and then reference any of the values in the reporting .jsp pages. That's exactly how the trend chart for PMD, and checkstyle and Javadoc errors is done. From metrics.jsp:</p>
<pre><code><jsp:useBean id="xpathData" class="net.sourceforge.cruisecontrol.chart.XPathChartData" />
<%
xpathData.add("CheckStyle", "count(/cruisecontrol/checkstyle/file/error)");
xpathData.add("PMD", "count(/cruisecontrol/pmd/file/violation)");
xpathData.add("Javadoc", "count(/cruisecontrol/build//target/task[@name='javadoc']/message[@priority='warn' or @priority='error'])");
%>
<cewolf:chart id="chart" title="Coding violations" type="timeseries" xaxislabel="date" yaxislabel="violations">
<cewolf:data>
<cewolf:producer id="xpathData">
<cewolf:param name="build_info" value="<%=build_info%>" />
</cewolf:producer>
</cewolf:data>
<cewolf:chartpostprocessor id="xpathData" />
</cewolf:chart>
<cewolf:img chartid="chart" renderer="cewolf" width="400" height="300"/>
</code></pre>
<p>You can just paste this into the metrics.jsp replace the xpath queries w/the xpath to your metrics and you're good to go.</p>
http://stackoverflow.com/questions/1467991/ant-how-to-execute-a-command-for-each-file-in-directory/1478159#14781591Answer by Jeffrey Fredrick for Ant: How to execute a command for each file in directory?Jeffrey Fredrick2009-09-25T15:56:35Z2009-09-25T15:56:35Z<p>ant-contrib is evil; write a custom ant task.</p>
<p>ant-contrib is evil because it tries to convert ant from a declarative style to an imperative style. But xml makes a crap programming language.</p>
<p>By contrast a custom ant task allows you to write in a real language (Java), with a real IDE, where you can write unit tests to make sure you have the behavior you want, and then make a clean declaration in your build script about the behavior you want.</p>
<p>This rant only matters if you care about writing maintainable ant scripts. If you don't care about maintainability by all means do whatever works. :)</p>
<p>Jtf</p>
http://stackoverflow.com/questions/1467257/deploying-asp-net-web-applications-from-hudson-build-ci-server/1478033#14780331Answer by Jeffrey Fredrick for Deploying ASP.NET Web Applications from Hudson Build/CI ServerJeffrey Fredrick2009-09-25T15:32:50Z2009-09-25T15:32:50Z<p>Are you looking to deploy to a single environment or do you want to automate deployments to all your environment?</p>
<p>If you're doing it to a single environment is generally easy to script this to happen automatically from your CI server, either automatically after each build or nightly or even on demand.</p>
<p>But ideally you'd like to use the same deployment automation across all your environments, from test through to production. In that case it might make sense to talk with your Ops people and find out how they are doing their deployments and the develop some common scripts. When we (Urbancode/AnthilPro) talk about <a href="http://www.anthillpro.com/html/products/anthillpro/features/deploy.html?utm%5Fsource=stackoverflow&utm%5Fmedium=answer&utm%5Fcampaign=jtf" rel="nofollow">deployment automation</a> that's usually what we're talking about and what we recommend to our customers.</p>
<p>If you need to convince someone that making this investment is worthwhile you might find this whitepaper <a href="http://www.anthillpro.com/html/resources/white-papers/default.html?utm%5Fsource=stackoverflow&utm%5Fmedium=answer&utm%5Fcampaign=jtf" rel="nofollow">Build & Deployment Automation for the Lean Economy</a> (pdf; registration required) useful. In it we use the Lean technique of <a href="http://en.wikipedia.org/wiki/Value%5Fstream%5Fmapping" rel="nofollow">Value Stream Mapping</a> to illustrate why automating your deployments is such a big win for the team. When you realize how much "waste" there is in manual deployments of the kind you're describing the investment in automation is a no-brainer.</p>
<p>Jtf</p>
http://stackoverflow.com/questions/1438390/comparison-of-ci-servers/1477946#14779461Answer by Jeffrey Fredrick for Comparison of CI Servers?Jeffrey Fredrick2009-09-25T15:21:36Z2009-09-25T15:21:36Z<p>No question like this is complete without a link to the big <a href="http://confluence.public.thoughtworks.org/display/CC/CI+Feature+Matrix" rel="nofollow">CI Feature Matrix</a> which lists just about every CI option out there.</p>
<p>But I think it is important to look ahead to the scope of what you want to include in your CI system. Is it going to be just builds or are you going to be bringing in other elements like static analysis, cross-project dependencies, deployments, functional tests, etc. To help with that planning I created this wallchart on the <a href="http://www.anthillpro.com/html/resources/elements-enterprise-ci.html" rel="nofollow">Elements of Enterprise CI</a> (PDF; no registration required). Please don't let the "E-word" put you off; I just mean stuff beyond the basic fast feedback CI build. :)</p>
<p>It isn't tool specific but lists a variety of practices you might consider while you're in the planning/evaluation stages.</p>
http://stackoverflow.com/questions/1176387/what-automated-build-system-do-mac-developers-use/1429570#14295700Answer by Jeffrey Fredrick for What automated build system do Mac developers use?Jeffrey Fredrick2009-09-15T20:56:18Z2009-09-15T20:56:18Z<p>I use the <a href="http://blog.jeffreyfredrick.com/2008/11/27/continuous-integration-for-iphonexcode-projects/" rel="nofollow">XcodeBuilder</a> that's part of <a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">CruiseControl</a>. Of course it helps that I wrote it. :)</p>
<p>But I did use it on a real multiple person project for an iPhone app (<a href="http://iphone.wavewatch.com/" rel="nofollow">Surf</a>) that's for sale in the app store.</p>
http://stackoverflow.com/questions/1427444/anything-better-than-cruisecontrol-for-net-ci/1427577#14275775Answer by Jeffrey Fredrick for Anything better than CruiseControl for .Net CI?Jeffrey Fredrick2009-09-15T14:32:46Z2009-09-15T14:32:46Z<p>If you haven't seen it you might want to check out the <a href="http://confluence.public.thoughtworks.org/display/CC/CI+Feature+Matrix" rel="nofollow">Continuous Integration Feature Matrix</a> which lists virtually ever CI server out there.</p>
<p>I work on the Java version of CruiseControl and these days I work for Urbancode who makes <a href="http://www.anthillpro.com/" rel="nofollow">AnthillPro</a>. From that perspective the right tool depends on the scope of what you're looking for. If you're just looking for fast feedback after a build lots of tools will work. If you're looking to setup a build grid then a there's a smaller group of tools. If you want to track dependencies between projects and deployments to multiple environments then you're in an even smaller group.</p>
http://stackoverflow.com/questions/855003/building-linux-packages-for-multiple-distributions-and-versions/1415354#14153540Answer by Jeffrey Fredrick for Building Linux packages for multiple distributions and versionsJeffrey Fredrick2009-09-12T15:18:14Z2009-09-12T15:18:14Z<p>This is one of the cases covered by Bob Aiello in <a href="http://www.cmcrossroads.com/cm-basics/12942-do-you-need-agents" rel="nofollow">this article</a> on build agents. <a href="http://www.anthillpro.com/html/default.html" rel="nofollow">We</a> have several customers who use this approach to build on several platform in parallel.</p>
http://stackoverflow.com/questions/1414117/any-experience-with-a-continuous-integration-appliance/1414290#14142901Answer by Jeffrey Fredrick for Any experience with a Continuous Integration Appliance?Jeffrey Fredrick2009-09-12T04:38:24Z2009-09-12T04:38:24Z<p>Take a look at this previous question: <a href="http://stackoverflow.com/questions/303614/whats-your-favorite-extreme-feedback-device">http://stackoverflow.com/questions/303614/whats-your-favorite-extreme-feedback-device</a></p>
http://stackoverflow.com/questions/1398569/do-you-know-alternatives-to-buildix/1400234#14002343Answer by Jeffrey Fredrick for Do you know alternatives to Buildix ?Jeffrey Fredrick2009-09-09T14:54:04Z2009-09-09T14:54:04Z<p>I just happened to read about <a href="http://www.coveros.com/research/research%5Fstack.php" rel="nofollow">SecureCI</a> yesterday on <a href="http://www.build-doctor.com/2009/09/05/covero" rel="nofollow">The Build Doctor blog</a>. Seems like just what you're asking for.</p>
http://stackoverflow.com/questions/1358939/command-line-compiling-an-iphone-application/1396144#13961441Answer by Jeffrey Fredrick for Command line compiling an iPhone ApplicationJeffrey Fredrick2009-09-08T20:23:06Z2009-09-08T20:23:06Z<p>I wrote an <a href="http://blog.jeffreyfredrick.com/2008/11/27/continuous-integration-for-iphonexcode-projects/" rel="nofollow">XCodeBuilder</a> (it calls xcodebuild) for <a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">CruiseControl</a> that is now part of the standard release. We used this on an app that is now in the app store and it was great. After every commit a version of the app w/the ad-hoc signature was ready for download and testing by the rest of the team.</p>
http://stackoverflow.com/questions/1328951/can-i-write-an-ant-task-which-takes-parameters-when-being-executed-from-another-a/1334642#13346420Answer by Jeffrey Fredrick for Can I write an ant task which takes parameters when being executed from another ant task?Jeffrey Fredrick2009-08-26T13:21:03Z2009-08-26T13:21:03Z<p>What you want is macro-def.</p>
<p>For a really good guide to writing Ant macros check out <a href="http://www.pjug.org/docs/ant.pdf" rel="nofollow">this presentation</a>.</p>
http://stackoverflow.com/questions/1322505/how-to-release-a-subset-of-deliverables/1323490#13234901Answer by Jeffrey Fredrick for How to release a subset of deliverables?Jeffrey Fredrick2009-08-24T16:46:09Z2009-08-24T16:46:09Z<p>This reminds me a lot of an interview question I was asked at Borland when I was applying for a program manager position. There the question was phrased differently — there's a major bug in one feature that can't be fixed before a fixed release date — but I think the same approach can work: remove the UI elements for the features for a future release.</p>
<p>Of course this assume that there's no effect of the features you want to leave out with the rest of what you want to ship... but if that's the case just changing the UI is easier than trying to make a more drastic change.</p>
<p>In practice what I think you would do would be to branch the code for release and then make the UI removals on that branch.</p>
http://stackoverflow.com/questions/1319066/forcing-unit-testing-on-developers/1319164#13191643Answer by Jeffrey Fredrick for Forcing Unit Testing on DevelopersJeffrey Fredrick2009-08-23T18:06:38Z2009-08-23T18:06:38Z<p>You don't want lip-service unit testing, you want whole-hearted unit testing. That isn't something that can be forced. What you need to do is influence your teammates over time to see the benefits of unit testing and to develop a unit testing culture.</p>
<p>To start with you need to understand that different people change for different reasons. In <a href="http://en.wikipedia.org/wiki/Crossing%5Fthe%5FChasm" rel="nofollow">Crossing the Chasm</a> terms, visionaries will adopt new techniques because they are better, but pragmatists adopt new techniques either because they solve a problem/pain the currently have or because everyone else is adopting it.</p>
<p>Your mission then it to show how unit testing can solve a pain your team currently feels. As you win over people one-by-one eventually you can reach a tipping point where unit testing is the norm and everyone goes along with it. However if you can't tie unit testing to a pain your team feels then your efforts to convince them will likely fail.</p>
http://stackoverflow.com/questions/1318818/accidentally-released-code-to-live-how-to-prevent-happening-again/1319090#13190901Answer by Jeffrey Fredrick for Accidentally released code to live. How to prevent happening again?Jeffrey Fredrick2009-08-23T17:36:49Z2009-08-23T17:36:49Z<blockquote>
<p>It seems to me even with Continuous
Integration and Unit Tests this is a
human procedure issue?</p>
</blockquote>
<p>Indeed! However you should be able to get some support from your infrastructure to support the human side of your process. When you're going to do a release you should be able to easily see all the commits that would be part of it and all of the related issues. This is the reporting side of continuous integration. (I'd say there are <a href="http://www.anthillpro.com/html/resources/elements%5Fof%5Fci%5FUSLetter.pdf" rel="nofollow">four elements</a> (pdf): building, deploying, testing and reporting.)</p>
http://stackoverflow.com/questions/1200721/language-agnostic-automated-build-and-test-server-for-multiple-projects/1314416#13144161Answer by Jeffrey Fredrick for Language-agnostic automated build and test server for multiple projectsJeffrey Fredrick2009-08-21T22:04:43Z2009-08-21T22:04:43Z<p>I'm a developer on <a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">CruiseControl</a> and I work for Urbancode who makes <a href="http://www.anthillpro.com/" rel="nofollow">AnthillPro</a>, so I can speak to the strengths of those. I'm also one of the organizers of <a href="http://www.citconf.com/" rel="nofollow">CITCON</a> so I'm pretty familiar with almost <a href="http://confluence.public.thoughtworks.org/display/CC/CI+Feature+Matrix" rel="nofollow">all the offerings in the space</a>.</p>
<p>CruiseControl or Hudson are both pretty good open source CI tools. I find CC really easy to customize and extend and there are lot of plugins that have been added over its 8 year lifetime. Hudson is newer and easier for most people to get started; it is dead simple to get your first project running using the GUI configuration while CC requires mucking about in XML files. Hudson also has an active plugin community and is rapidly adding new capabilities.</p>
<p>However depending on the complexity and requirements of your projects you might find a commercial tool like AnthillPro would be a better fit. The reasons upgrade from CC or Hudson to AHP vary from company to company but some typical answers include the ability to setup self-service deployments with access control by environment, the desire to chain multiple builds/workflows together, the built in dependency management, the artifact repository, or the ability to <a href="http://www.anthillpro.com/html/products/anthillpro/tool-integrations.html" rel="nofollow">pull together data from a bunch of different tools</a> & builds across the lifecycle.</p>
<p>Not everyone needs those capabilities but the people who do find the upgrade to be worth the money.</p>
http://stackoverflow.com/questions/1302768/finalbuilder-alternative-for-mac-os-x/1303884#13038840Answer by Jeffrey Fredrick for FinalBuilder alternative for Mac OS X?Jeffrey Fredrick2009-08-20T04:03:12Z2009-08-20T04:03:12Z<p>How much of the process are you looking at controlling from the tool vs from Xcode?</p>
<p>If you're going to define the build process in Xcode and you're just looking at something to invoke the Xcode command-line build you could use CruiseControl and its <a href="http://blog.jeffreyfredrick.com/2008/11/27/continuous-integration-for-iphonexcode-projects/" rel="nofollow">xcodebuilder</a>.</p>
<p>This isn't at all equivalent to FinalBuilder but I did use this successfully to do CI on <a href="http://iphone.wavewatch.com/" rel="nofollow">this iPhone app</a>.</p>
http://stackoverflow.com/questions/1252550/are-there-any-java-open-source-projects-with-both-integration-and-unit-test-suite/1303857#13038570Answer by Jeffrey Fredrick for Are there any Java open source projects with both integration and unit test suites?Jeffrey Fredrick2009-08-20T03:53:40Z2009-08-20T03:53:40Z<p><a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">CruiseControl</a> has both unit tests and functional tests. Most (all?) of the functional tests are for the newest component, the Dashboard. But if you restrict what you're looking at to just that component you'll find both unit tests and functional tests.</p>
http://stackoverflow.com/questions/1276355/integrating-code-inspector-with-continious-integration-tools/1297277#12972770Answer by Jeffrey Fredrick for Integrating Code Inspector with Continious Integration Tools Jeffrey Fredrick2009-08-19T00:25:57Z2009-08-19T00:25:57Z<p>What's the output from the SCI look like? If it is plain text or xml it should be trivial to accommodate from a variety of CI tools.</p>
<p>I'm most familiar with CruiseControl and AnthillPro and both of them could handle this without a problem.</p>
http://stackoverflow.com/questions/1279215/how-does-continuous-integration-improves-software-quality/1297265#12972651Answer by Jeffrey Fredrick for How does Continuous Integration improves software quality?Jeffrey Fredrick2009-08-19T00:21:38Z2009-08-19T00:21:38Z<p>There are some obvious easy CI helps code quality and some subtle ways.</p>
<p>The obvious way is what it does directly by improving feedback. That feedback could be running unit tests and catching defects but it could also be running code metrics like Crap4J so you see what's happening to your code over time.</p>
<p>A more subtle effect comes from the confidence you get from having the CI safety net. Lots of teams I've visited know they have ugly code but they are afraid to fix it because they might break something and not find out until it is too late. Having the feeling that if you make a mistake that your CI system will tell you in 5 minutes is very empowering!</p>
<p>Finally there's the simply the result of extra time. With CI you catch some problems sooner which makes them easier to fix. Now how do you reinvest that time savings? If you spend it refactoring or doing extra testing (or both if you include your QA team) you're going to end up with higher quality code.</p>
http://stackoverflow.com/questions/1045200/cruisecontrol-failed-build-recovery/1053672#10536720Answer by Jeffrey Fredrick for CruiseControl Failed Build RecoveryJeffrey Fredrick2009-06-27T21:32:57Z2009-06-27T21:32:57Z<p>The Java version or .NET?</p>
<p>If the Java version use <a href="http://cruisecontrol.sourceforge.net/main/configxml.html#project" rel="nofollow">buildafterfailed=true</a>.</p>
http://stackoverflow.com/questions/822510/selenium-rc-with-cruise-control-testng-error-message-could-not-instantiate-t/837939#8379392Answer by Jeffrey Fredrick for selenium rc with cruise control - testng error message - could not instantiate 'test'Jeffrey Fredrick2009-05-08T02:02:27Z2009-05-08T02:02:27Z<p>You don't have your classes (tests & target classes) on the classpath.</p>
http://stackoverflow.com/questions/742440/tagging-unit-tests/744924#7449240Answer by Jeffrey Fredrick for Tagging unit-testsJeffrey Fredrick2009-04-13T18:37:25Z2009-04-13T18:37:25Z<p>I'd address the issue by having a subset of tests ("smoke tests") that take 1 minute or less that <strong>must</strong> be run before committing, then run the full set of tests from your CI server.</p>
<p>If your full set of tests takes > 15 minutes then I'd look to divide them and run them in parallel.</p>
<p>Then you can use the --filter to run the tests you're most interested in first, then the smoke tests prior to commit, and have the rest run from the CI server.</p>
http://stackoverflow.com/questions/710091/how-can-i-frequently-automatically-compare-the-structure-of-the-same-database/710312#7103120Answer by Jeffrey Fredrick for How can I frequently/automatically compare the structure of the same Database?Jeffrey Fredrick2009-04-02T15:43:54Z2009-04-02T15:43:54Z<p>For integrating into CC if the output of the tool is plaintext you can publish it as an artifact. If the output is .xml you can merge it into the log and write an xsl that will include it in the email & web pages.</p>
http://stackoverflow.com/questions/658731/selling-trac-buildbot-etc-to-upper-management/658872#6588726Answer by Jeffrey Fredrick for "Selling" trac/buildbot/etc to upper managementJeffrey Fredrick2009-03-18T15:48:35Z2009-03-18T15:48:35Z<p>Is there anything you could do now that wouldn't require permission from anyone else? Could you start by just using trac/buildbot/etc for just your own work, then add in others as they are interested?</p>
<p>In my experience you can get quite far by doing w/out asking.</p>
http://stackoverflow.com/questions/651179/cruise-control-losing-track-of-paths-in-subtasks/651268#6512681Answer by Jeffrey Fredrick for Cruise Control losing track of paths in subtasksJeffrey Fredrick2009-03-16T17:00:31Z2009-03-16T17:00:31Z<p>In your CruiseControl configuration you can specify the <a href="http://cruisecontrol.sourceforge.net/main/configxml.html#ant-examples" rel="nofollow">anthome or antscript attributes</a> so that you use your version of Ant, so you should be able to get the same behavior from CC that you get at the command-line.</p>
http://stackoverflow.com/questions/86515/does-anyone-know-the-cvs-command-line-options-to-get-the-details-of-the-last-chec/651085#6510850Answer by Jeffrey Fredrick for Does anyone know the CVS command line options to get the details of the last check in?Jeffrey Fredrick2009-03-16T16:12:06Z2009-03-16T16:12:06Z<p>Isn't this a solved problem? I would think any of the several tools on the <a href="http://confluence.public.thoughtworks.org/display/CC/CI%2BFeature%2BMatrix" rel="nofollow">CI Matrix</a> that supports both CVS and email notifications could do this for you.</p>
http://stackoverflow.com/questions/230595/what-artifacts-to-save-for-a-nightly-build/648054#6480543Answer by Jeffrey Fredrick for What artifacts to save for a nightly build?Jeffrey Fredrick2009-03-15T16:10:31Z2009-03-15T16:10:31Z<p>A surprising one I learned about recently: If you're in an environment that might be audited you'll want to save all the output of your build, the script output, the compiler output, etc.</p>
<p>That's the only way you can verify your compiler settings, build steps, etc.</p>
<blockquote>
<p>Also, how long to save them for, and where to save them?</p>
</blockquote>
<p>Save them until you know that build won't be going to production, iow as long as you have the compiled bits around.</p>
<p>One logical place to save them is your SCM system. Another option is to use a tool that will automatically save them for you, like AnthillPro and its ilk.</p>
http://stackoverflow.com/questions/647621/cruise-control-net-alternatives/647884#6478843Answer by Jeffrey Fredrick for Cruise Control .NET alternatives?Jeffrey Fredrick2009-03-15T14:22:54Z2009-03-15T14:22:54Z<p>You know about the giant <a href="http://confluence.public.thoughtworks.org/display/CC/CI%2BFeature%2BMatrix" rel="nofollow">CI Feature Matrix</a>?</p>
http://stackoverflow.com/questions/639012/continuous-integration-cruisecontrol-advice/640173#6401731Answer by Jeffrey Fredrick for Continuous integration / Cruisecontrol adviceJeffrey Fredrick2009-03-12T19:42:39Z2009-03-12T19:42:39Z<p>Well personally I would use the original CruiseControl, but that's probably because I helped write it. ;)</p>
<p>There are lots of tools available to do what you want (CC, cc.rb, Hudson, etc.). If you just care about running those tests then most of them will do. If you want a more polished experience and a few more features (like IDE integration) then tools like Zutubi Pulse (or Bamboo or Team City) start to look good. If you want to get into the full lifecycle (CI->test->deployment) and reporting from multiple tools then something higher end like AnthillPro might be the way to go.</p>
<p>So really a question of what else you think you might want to do.</p>
http://stackoverflow.com/questions/1467257/deploying-asp-net-web-applications-from-hudson-build-ci-server/1478033#1478033Comment by Jeffrey Fredrick on Deploying ASP.NET Web Applications from Hudson Build/CI ServerJeffrey Fredrick2009-09-27T03:37:49Z2009-09-27T03:37:49ZYikes! Well, think of all the time you'll get back from automation! :)
I recommend that you edit your questions to describe the technologies you're using on your server: IIS vs Apache vs JBoss etc, PHP vs .NET vs Java etc. I think you'll get better answers with those additional details.http://stackoverflow.com/questions/1472803/ant-how-to-delete-only-empty-directories-recursively/1473033#1473033Comment by Jeffrey Fredrick on ANT How to delete ONLY empty directories recursively Jeffrey Fredrick2009-09-25T15:52:25Z2009-09-25T15:52:25ZI would definitely go with the custom ant task. They are easy to write, cross platform, and are a tidy way to get exactly the behavior you want in a declarative style.http://stackoverflow.com/questions/1200721/language-agnostic-automated-build-and-test-server-for-multiple-projects/1310507#1310507Comment by Jeffrey Fredrick on Language-agnostic automated build and test server for multiple projectsJeffrey Fredrick2009-08-21T21:50:17Z2009-08-21T21:50:17ZRasjani, it would be pretty easy to port most of those fancier CC features to the other builders. Post about it on the cruisecontrol-user mailing list and maybe we can get those added for you.http://stackoverflow.com/questions/690419/build-and-version-numbering-for-java-projects-ant-cvs-hudson/690449#690449Comment by Jeffrey Fredrick on Build and Version Numbering for Java Projects (ant, cvs, hudson)Jeffrey Fredrick2009-04-10T01:21:02Z2009-04-10T01:21:02ZTip: If you're using CC and Ant's BuildNumber you can use the PropertyFileLabelIncrementer to keep the CC labels in sync with the build number.http://stackoverflow.com/questions/686358/is-it-a-good-idea-to-use-hp-quality-center-for-continuous-integration/686587#686587Comment by Jeffrey Fredrick on Is it a good idea to use HP Quality Center for Continuous Integration?Jeffrey Fredrick2009-03-26T16:55:15Z2009-03-26T16:55:15ZWorth mentioning that "we" = Urbancode and their customers are using AnthillPro and the HP QC integration.http://stackoverflow.com/questions/658731/selling-trac-buildbot-etc-to-upper-management/658872#658872Comment by Jeffrey Fredrick on "Selling" trac/buildbot/etc to upper managementJeffrey Fredrick2009-03-20T16:59:22Z2009-03-20T16:59:22ZPeople are most likely to change when they see results. I had a friend who ran CruiseControl on his desktop. Eventually people asked how he always knew when the build was broken. When he showed them they said "we should do this for everyone!" :)http://stackoverflow.com/questions/651179/cruise-control-losing-track-of-paths-in-subtasks/651268#651268Comment by Jeffrey Fredrick on Cruise Control losing track of paths in subtasksJeffrey Fredrick2009-03-17T20:31:17Z2009-03-17T20:31:17ZThose attributes are for the CruiseControl config.xml, not the Ant build.xml. You use them to tell CC which Ant it should use for the build.http://stackoverflow.com/questions/647621/cruise-control-net-alternatives/647675#647675Comment by Jeffrey Fredrick on Cruise Control .NET alternatives?Jeffrey Fredrick2009-03-16T04:55:42Z2009-03-16T04:55:42ZCruise is independent of the open source CruiseControl efforts. CruiseControl, CC.NET and (afaik) cruisecontrol.rb will continue.http://stackoverflow.com/questions/384036/c-continuous-integration-with-performance-metrics/384485#384485Comment by Jeffrey Fredrick on c++ continuous integration with performance metricsJeffrey Fredrick2009-03-05T16:27:00Z2009-03-05T16:27:00ZThat's fair. Of course if any of your custom work would be generally useful perhaps it would be a good contribution to the project? That's how the project can improve over time...http://stackoverflow.com/questions/603786/using-svn-with-cruisecontrol/611216#611216Comment by Jeffrey Fredrick on Using SVN with CruiseControl?Jeffrey Fredrick2009-03-04T21:24:33Z2009-03-04T21:24:33ZThat's because in the force build case there was no modification, so there's no modification revision number. In that case the svnlabelincrementer will pass the latest for what you have locally, which will also be the latest.http://stackoverflow.com/questions/556006/do-you-need-to-do-unit-and-integration-testing-if-you-already-do-functional-testi/556797#556797Comment by Jeffrey Fredrick on Do you need to do unit and integration testing if you already do functional testing?Jeffrey Fredrick2009-02-17T16:30:43Z2009-02-17T16:30:43ZBut <i>only</i> if you want to go faster and have fewer bugs...http://stackoverflow.com/questions/140453/continuous-integration-servers/140527#140527Comment by Jeffrey Fredrick on Continuous Integration ServersJeffrey Fredrick2009-02-13T18:37:48Z2009-02-13T18:37:48ZActually it wasn't: <a href="http://stackoverflow.com/questions/140453/continuous-integration-servers/275728#275728" rel="nofollow" title="continuous integration servers">stackoverflow.com/questions/140453/…</a>http://stackoverflow.com/questions/546966/how-to-build-warfile-using-previous-versions-of-source-filesComment by Jeffrey Fredrick on How to build warfile using previous versions of source files?Jeffrey Fredrick2009-02-13T18:10:47Z2009-02-13T18:10:47Z<a href="http://catb.org/~esr/faqs/smart-questions.html#goal" rel="nofollow">catb.org/~esr/faqs/…</a>http://stackoverflow.com/questions/517813/how-to-make-sure-developers-are-unit-testing-their-code/517881#517881Comment by Jeffrey Fredrick on How to make sure developers are unit testing their codeJeffrey Fredrick2009-02-06T19:03:08Z2009-02-06T19:03:08Zwtf? why would this get voted down?http://stackoverflow.com/questions/301693/why-didnt-unit-testing-work-out-for-your-project/301940#301940Comment by Jeffrey Fredrick on Why didn't unit testing work out for your project?Jeffrey Fredrick2009-01-22T07:32:49Z2009-01-22T07:32:49ZThis doesn't seem like a failure of unit testing, this seems like a failure of management. Was there nobody tracking the progress vs. the schedule? Did management not know where time was being spent? Was there no ability to course correct? The tests seem like the proximate, not ultimate, cause here.