Simple question :)
How can I reduce build time using a parallel build / parallelizing the tests?
We're using TeamCity, JUnit, Fit, Selenium
|
Simple question :) How can I reduce build time using a parallel build / parallelizing the tests? We're using TeamCity, JUnit, Fit, Selenium |
|||||||||||||||
|
|
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. |
|||||||
|