Jenkins: pipeline script - call plugin

删除回忆录丶 提交于 2019-12-10 10:07:15

问题


I am writing an Jenkins pipeline script and try to call a plugin what is in a normal job configuration configured under "build".

Plugin: https://wiki.jenkins-ci.org/display/JENKINS/Parameter+Pool+Plugin

I tried calling it via:

step([$class: 'ParameterPool', projects: '123', name: 'ID', values: '1, 2, 3, '])

But its not working.

Calling other plugins like:

step([$class: 'LogParserPublisher', parsingRulesPath: '/opt/log_minimal_parser', useProjectRule: false])

works just fine.

How I can call a random plugin in pipeline script?


回答1:


You cannot call any random plugin from a pipeline, instead you can only call plugins that have been made compatible with pipelines, which is the use of a newer API.

Your second plugin has been made compatible with pipeline, the first one just hasn't yet ! You can find a full list of compatible plugins here : Plugin Compatibility with Pipeline



来源:https://stackoverflow.com/questions/38132843/jenkins-pipeline-script-call-plugin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!