Teamcity:当其他构建正在运行时停止构建运行?
我在 teamcity 中运行了两个版本。一个部署数据库,另一个创建一个应用程序,然后针对数据库运行。
所以我的问题是,如果第二个正在运行,我不希望数据库构建启动。 所以我需要数据库构建不要触发/等待另一个完成?
I have two builds running in teamcity. One deploys the db, the other makes an app and then runs against the db.
So my problem is, i dont want the db build to start if the second is running.
So i need the database build not to trigger/wait until the other is finished?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在要等待的构建(B1)上创建快照依赖在另一个版本(B2)上
假设B1需要在B2完成后才开始
You can create a snapshot dependency on build(B1) that you would like to wait on the other build(B2)
Assuming B1 needs to start only after B2 is complete
更好的方法是使用两个构建步骤创建一个构建配置。然后将运行构建配置的限制设置为 1,就完成了。
Better way is to create one build configuration with two build steps. Then set limit of running build configuration to one and you are done.