Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is difference between continuous integration tools like Hudson and build tools like ant?.When it will be called CI tool of software cycle?.what would be helpfully if before using building a project?.As per my understand CI tool is test driven envieroment.So is it required to use unit testing framework?.

Non-Make-based tools vs Make-based tools (http://en.wikipedia.org/wiki/List_of_build_automation_software)

share|improve this question

closed as not a real question by Sean Patrick Floyd, oezi, Mef, Bohemian, Blundell Nov 16 '12 at 11:33

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Build tools like Ant and Maven aren't automated on their own, you will need some kind of framework in place to make them run automatically. This is where CI comes in.

Often your CI tools will use plugins for Ant and Maven to do automated builds and releases as well as running tests. I guess the general idea of CI is test driven, so when you push new code you can run all of the tests etc... but you can also perform a build as part of this process.

share|improve this answer
No, CI is related to "continuous testing" but not to "test driven". – Puce Nov 16 '12 at 10:18

Continuous integration tools are designed to use the build tools like ant to frequently run the build process. While you may run ant manually, CI tools are supposed to keep running continuously so that if someone makes a bad commit it is detected as soon as possible. CI tools also have lot of other features like running quality measurement tools like findbugs and generating periodic reports on quality of the code base etc.

share|improve this answer
Can i integrate unit testing frame work like JUnit? what about Non-Make-based tools ,Make-based tools ? – user1357722 Nov 16 '12 at 11:14
Tools like hudson will allow you to run any task including junit. See wiki.eclipse.org/Hudson-ci/Meet_Hudson – AKJ Nov 16 '12 at 13:06

Not the answer you're looking for? Browse other questions tagged or ask your own question.