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

Simple question :)

How can I reduce build time using a parallel build / parallelizing the tests?

We're using TeamCity, JUnit, Fit, Selenium

share|improve this question
2  
"Simple", he says. – Ian Boyd Mar 25 '10 at 0:35
3  
The real answer depends on what continuous integration, build, and test automation tools you are using. – Franci Penov Mar 25 '10 at 0:45
TeamCity, JUnit, Fit, Selenium – Alex Baranosky Mar 25 '10 at 0:46
how long do your tests take to run..? – matt b Mar 25 '10 at 2:08
full build is like 30 minutes I think. We don't run it all before committing, just the fast tests. – Alex Baranosky Mar 25 '10 at 5:40
show 2 more comments

1 Answer

up vote 1 down vote accepted

Use distcc for C/C++ to distribute the build across several computers.

Use ccache to cache compiler work that's been done before. Good luck.

share|improve this answer
A real-life build process rarely consists of running the C/C++ compiler only. But these two tools are good starting point for certain scenarios. – Franci Penov Mar 25 '10 at 0:46
3  
+1 for “good luck.” :) – Bombe Mar 25 '10 at 6:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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