Build after other projects are built:在其他项目构建完成后再进行构建。
这里又分三种情况:
①Trigger only if build is stable:其他项目构建成功
②Trigger even if the build is unstable:其他项目不稳定
③Trigger even if the build fails:其他项目构建失败
Build periodically:周期进行构建
例如:0 4 * * * (每天凌晨4点必须构建一次源码)
Poll SCM:根据SCM软件的版本号,
定时检查源码变更。如果有更新,则checkout最新code,然后执行构建动作。
例如:*/10 * * * * (每10分钟检查一次源码变化,如果有更新才build)