如何使用并行构建/并行化测试来减少构建时间?
简单的问题:)
如何使用并行构建/并行化测试来减少构建时间?
我们正在使用 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 C/C++ 的 distcc 将构建分发到多台计算机上。
使用ccache来缓存之前完成的编译器工作。祝你好运。
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.