您能解释一下持续集成是如何工作的吗?
我希望使用持续集成,但我对 Ant、Jenkins、CruiseControl、Phing、PHPUnderControl 等不太了解……
什么是真正的持续集成?
我正在使用 Zend Framework 开发 PHP 应用程序,轻松部署和测试代码听起来很棒。
谢谢
I wish to use Continuous Integration, but I'm little lost with Ant, Jenkins, CruiseControl, Phing, PHPUnderControl, etc...
What is really Continuous Integration?
I'm developping PHP application using Zend Framework, and it sounds great to deploy easily and tests piece of code.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
持续集成是一个每当签入/提交发生时自动执行构建的过程。这样可以尽快识别集成问题,并更容易确定谁对问题负责。作为奖励,持续集成需要完全自动化的构建过程,这使得任何人都可以更轻松地在自己的计算机上复制开发环境。
Continuous integration is a process that automatically performs a build whenever a check-in/commit occurs. This allows integration problems to be identified ASAP and makes it easier to identify who is responsible for the problem. As a bonus, continuous integration requires a completely automated build process which makes it much easier for anyone to replicate the development environment on their machine.