每 10 秒触发一次 Jenkins 作业

问题描述 投票:0回答:1

能够每分钟配置jenkins作业,但是有没有办法配置jenkins作业每10秒或每秒触发一次?

我接触过 poll-scm 和throttle,但我没有发现它们有用。

任何建议都会有帮助。

linux jenkins cron jenkins-plugins
1个回答
0
投票

将作业配置为每分钟执行一次,然后在执行 shell 中添加以下代码

enter image description here

for i in {1..6}  # Loop runs 6 times
do
  echo "Executing task $i at $(date)"
  # Add your commands to run the task here
  
  sleep 1  # Sleep for 1 second before the next iteration
done

我找不到更好的方法,如果您知道正确的处理方法,请告诉我。

© www.soinside.com 2019 - 2024. All rights reserved.