使用Dynamic choice参数作为批处理脚本中的标签

时间:2016-07-15 09:19:13

标签: windows batch-file jenkins

Jenkins构建具有动态选择参数'choice_database',其值为'Oracle'。

使用'choice_database'作为Jenkins上Windows批处理脚本的标签不起作用

 GOTO %choice_database%
wmic process where "CommandLine like '%%java.exe -Dlog4j.configuration%%' and Caption Like '%%java.exe%%'" call terminate
wmic process where "CommandLine like '%%-Djava.util.logging.file=%%' and Caption Like '%%java.exe%%'" call terminate

:%choice_database%
wmic process where "CommandLine like '%%start.cmd%%' and Caption Like '%%cmd.exe%%'" call terminate

这是Jenkins输出的内容

  

GOTO Oracle

     

系统找不到指定的批处理标签 - Oracle

     

构建步骤'执行Windows批处理命令'将构建标记为失败   完成:失败

在Jenkins上使用批处理脚本的参数化值时,是否还有其他一些标签语法?

0 个答案:

没有答案