Привет!
Мне нужно передавать данные от одного шага к другому в конвейере Дженкинса.Примерно так:
node {
// myPipelineStep is "my" own hello world pipeline step based on hello-world archetype, and I want it to return a variable that I have inside the plugin
def return_value = myPipelineStep inputVariable: value
// Then I want to do something else, a new step, where I use this value
sh 'echo $return_value'
//But the problem is I dont know how to return something from my pipeline step
}
Но в пустом плагине архетипа функция execute (), в которой должно происходить действие , недействительна ... Так что здесь невозможно что-то вернуть.
То же самое относится и к типу hello-world.
Любойс какими проводами?