views:

267

answers:

1

Simple question :)

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

We're using TeamCity, JUnit, Fit, Selenium

+1  A: 

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.

Chris Wilson
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
+1 for “good luck.” :)
Bombe