Alex Baranosky
Alex Baranosky

Reputation: 50094

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

Simple question :)

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

We're using TeamCity, JUnit, Fit, Selenium

Upvotes: 1

Views: 1041

Answers (1)

Chris Wilson
Chris Wilson

Reputation: 304

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.

Upvotes: 1

Related Questions