Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 Buildbot 0.8.7p1 并希望在构建完成后重新启动服务器。我尝试了联锁,关机步骤 - 没有任何帮助。
在构建步骤的情况下 - 如果我重新启动服务器或只是强制停止从站 - 构建接收异常.. 理想情况下在构建开始时使用某种“优雅关闭 + 重启”(第一个构建步骤),因此在当前构建器上构建之后将是完成 - 服务器宕机..
我在我的一些 Windows 从站上使用重新启动构建步骤来测试安装在同一台机器上的多个版本的 Windows。
添加一个调用“shutdown /f /r /t 30”的步骤对我有用而不会导致异常,例如:
f.addStep(ShellCommand(name="Rebooting",command="shutdown /f /r /t 30"))
f在哪里buildfactory。
f
buildfactory