标签: jenkins
我正在寻找一种方法来获取Jenkins中的自定义变量列表以及它们中设置的值。 我可以使用一些网址请求吗?
答案 0 :(得分:0)
您可以使用xpath,depth和tree参数,例如>
http://jenkins.example.com/job/YOURJOBNAME/api/json?xpath=/hudson/job[1]/build[1]/action[1]/parameter&depth=3&tree=name,description,allBuilds[actions[parameters[name,value]],number,building,url,duration,fullDisplayName,timestamp,result],inQueue,queueItem[actions[parameters[name,value]]]&pretty
答案 1 :(得分:0)
如果您正在讨论Windows系统环境变量而不是运行批处理命令设置并读取输出或使用Groovy脚本:
def env = System.getenv() String variable= env['your_var']