詹金斯 CI +蚂蚁+ SSH 插件
所以我的设置方式是:
- Jenkins 轮询存储库上的更改
- Jenkins 启动 Ant
- Jenkins 使用 SSH 插件在删除服务器上运行脚本(以运行 git pull)
问题是,如果 Ant 失败,Jenkins 仍然会继续前进步骤 3 并处理脚本。
如何让詹金斯在第 2 步之后停止一切?或者有更好的方法来完成我的流程吗?
So the way I have this setup is:
- Jenkins Polls for changes on repo
- Jenkins Initiates Ant
- Jenkins uses SSH plugin to run a script on a remove server (to run a git pull)
The problem is that if Ant fails, Jenkins still moves on to step 3 and processes the script.
How do I make Jenkins just stop everything after step 2? Or is there a better way of doing my process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为我真正需要的是 通过 SSH 发布 。这使您能够将其包含在构建后选项中。
I think what I really needed was Publish Over SSH instead. This enables you to include it in the Post Build Options.