将工件发布到 Hudson 中的两个不同的 SVN 存储库
构建后,我想在两个不同的 SVN 存储库中发布我的工件(jar),在Hudson中可以做到吗?
通过使用 Hudson 插件“发布到 Subversion 存储库”,我可以将我的作品仅发布到一个 SVN 存储库!
问候,
After the build, I want to publish my artefacts (jars) in two different SVN repositories, is it possible to do that in Hudson?
By using the Hudson plugin "Publish to Subversion repository", i can publish my artefacts to only one SVN repository!
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在发布到文件存储库时遇到了类似的问题。基本上我的解决方法是执行任务后任务,使用命令行脚本通过 ssh 传输文件。
我建议您考虑创建后任务任务,通过 svn 命令行脚本将文件提交到 svn 存储库。这需要更多的工作,但要灵活得多。
I had a similar problem with publishing to a file repository. Basically my work-around was to do post-task tasks which used command line scripts to transfer the files via ssh.
I suggest that you look into creating post-task tasks which submit your files to the svn repository via svn command line scripting. It's a little more work, but it is far more flexible.