🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
# Jenkins配置任务 Jenkins如何设置定时任务 * 新建任务 ![](https://img.kancloud.cn/4a/36/4a363887554af2efa717f396a95cef8d_867x582.png) * 输入任务名称等 ![](https://img.kancloud.cn/ed/43/ed4388e9dd33d5f7e37501f5fb94f85d_1063x457.png) * 描述信息 ![](https://img.kancloud.cn/d9/13/d91302508fc2e9a626624061a3ccd7d7_1005x399.png) * 构建触发器 ![](https://img.kancloud.cn/e2/00/e200c0d7908319612a8dc5415a74b65f_998x372.png) * 日程表语法 ~~~ 语法:分钟 小时 天 月 周 总共五个字段,每个字段用空格或者tab键隔开 例子: 20 12 1-25 * * 表示每周每月的1-25号的每天12点20开始执行 25 23 * * * 表示每天的23:25份执行 10 15 * * 1-5 表示周一到周五的每天15:10分执行 ~~~ * 增加构建步骤 ![](https://img.kancloud.cn/97/63/9763151e91ca90b2022979f60cedba2c_1155x181.png) * 填写命令 ![](https://img.kancloud.cn/b2/c3/b2c36ca2b01f03fc561cf7cef3e3254b_903x245.png) * 如何填写命令 为了防止Jenkins出错,最好是指定Python的目录 语法: `python的安装路径\python 要执行的py文件路径` 1. 比如我的python安装在**C:\\Python** 2. 我要执行的py文件的路径:**G:\\api\_project\\run\_jmeter.py** 那么我的命令为: **C:\\Python**\\python G:\\api\_project\\run\_jmeter.py ![](https://img.kancloud.cn/dd/76/dd76ce0a92c6a9ea7f45f0ce065bf952_1053x238.png) 然后保存即可 ![](https://img.kancloud.cn/24/04/240425e95d0992bc192465672ae7eeb8_510x490.png)