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.
我可以让詹金斯每小时检查一次 SVN 的变化吗?我是 Jenkins 的新手,我正在从事一些 Java 项目。我想知道我是否可以让詹金斯每小时醒来,看看项目是否在 SVN 中发生变化。如果项目确实发生了变化,我可以让它进行构建吗?
詹金斯不会“醒来”,它会持续运行。但是,您想要的是它定期轮询 SVN。相应地配置 SVN 插件:
-> 你的项目 -> 配置 -> 构建触发器 -> 轮询 scm -> "24 * * * *"
"24 * * * *" 是一个 CRON 表达式,它告诉 Jenkins 每隔 24 分钟每小时轮询一次 SVN。
是的,使用这个插件
在那轮询svn之后,如图所示