我正在将Drone.io设置到我的团队的存储库中,以便进行持续集成。
问题是我锁定了一个测试构建,并且我看不到取消它的方法。有没有办法手动取消?如果没有,是否存在导致构建过期的超时?
谢谢。
发布于 2015-05-07 21:37:44
可以在任何时候通过状态页面上的链接/按钮手动取消正在运行的构建。还有15分钟。修复免费套餐的超时问题(参见限制:http://docs.drone.io/buildscript.html)。
发布于 2017-11-14 23:55:22
您可以使用drone-cli命令终止构建,详细信息请参阅https://discourse.drone.io/t/how-to-kill-a-build-stuck-in-running-state/1022/2。
注意:您应该对drone-cli和drone-server/agent使用相同的版本
发布于 2018-03-15 14:58:41
您可以使用drone build stop取消drone构建
drone build stop octocat/hello-world 1或者可以使用drone build kill强行终止构建
drone build kill octocat/hello-world 1https://stackoverflow.com/questions/29579308
复制相似问题