SubVersion 的夜间构建脚本
我已经准备了一个包含多个项目的解决方案,其中使用 Netbeans IDE 在 Linux 下使用 Subversion 进行版本化。
我想准备一个自动化夜间构建创建的脚本: - 从 SVN 签出最新版本 - 编译多个项目 - 选择文件子集(库、标头等...) - tar.gz 他们 - 将 tar.gz 提交到 SVN
有什么建议吗? 提前致谢 再见 安德里亚
I have prepared a solution with multiple projects with Netbeans IDE versioned under Linux with Subversion.
I would like to prepare a script that automatize nightly build creation:
- checkout latest version from the SVN
- compile multiple projects
- choose a subset of files (libraries, headers, etc...)
- tar.gz them
- commit the tar.gz to the SVN
Some suggestions?
Thanks in advance
Ciao
Andrea
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谷歌的说法是持续集成。
对于 Java,您可以首先查看 CruiseControl。您可以将其配置为运行夜间构建和持续集成(在 SVN 中的每次检查时)。实际的构建脚本将用 Ant 或类似语言编写。
The google phrase is continous integration.
For Java you can start with checking out CruiseControl. You can configure it to run both nightly builds and continous integration (on every checking in SVN). The actual build script would be written in Ant or similar.