我们想要设置一个 hudson 作业,它将每 10 分钟执行一次查询,以查找与当前日期相等的日期列。如果此条件为假,则作业应仅循环并以 10 分钟的间隔再次运行,直到条件为真,此时我们希望作业继续执行第二步,该步骤将执行另一个 sql 以更新表。是否可以在单个作业中进行设置?我一直在搜索,但在任何地方都没有找到这种情况的示例。
问问题
165 次
1 回答
0
Of course you can.It can be pretty simple actually.
Make a new job in Hudson which automatically runs every 10 minutes.As for the job content,write some shell script to do the sql search. Then if the code returns true, continue with the 2nd step,if not,just end the job.It will be started by Hudson 10 minutes later.
于 2013-07-29T09:33:20.417 回答