如何进一步自动化 Teamcity

发布于 2024-10-12 08:39:05 字数 132 浏览 2 评论 0原文

我已成功配置我的项目以在 TeamCity 中构建。更进一步,我想在构建成功完成后运行部署脚本。部署脚本是一个简单的 bash 命令。为了使问题更简单,一旦在 Teamcity 中成功完成构建,我将如何调用 shell 命令。

请帮忙

I have successfully configured my project for build in TeamCity. Going a step more, I want to run a deployment script once a build completes successfully. The deployment script is a simple bash command. To make the question more simpler, how would I invoke a shell command once a build successfully completes in Teamcity.

Please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半葬歌 2024-10-19 08:39:05

TeamCity 6.0 有一项新功能,名为 多个构建步骤

多个构建步骤:现在任何构建配置都可以由无限数量的构建步骤组成,其中每个步骤都由一个构建运行程序表示。不要限制自己,并根据需要将尽可能多的构建运行器组合到一种配置中。您可以在编译 VS 解决方案之前随意调用 NAnt 脚本,在 ANT 构建之后运行检查和重复项查找器,在 Rake 构建之后添加 NUnit 测试,等等。

因此,您可以使用 添加新的构建步骤 http://confluence.jetbrains.net/display/TCD6/Command+Line" rel="nofollow">命令行运行程序 将执行您的 shell 脚本。

TeamCity 6.0 has a new feature called Multiple Build Steps:

Multiple Build Steps: Now any build configuration can be comprised of unlimited number of build steps, where each step is represented by a build runner. Don’t limit yourself, and combine as many build runners into one configuration as you need. Feel free to call a NAnt script before compiling VS solutions, run inspections and duplicates finder after your ANT build, add NUnit tests after your Rake build, and so on.

So you can add a new build step with the command line runner which will execute your shell script.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文