You've already forked jenkins-lib
mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2025-08-25 20:09:25 +02:00
10 lines
261 B
Groovy
10 lines
261 B
Groovy
import ru.pulsar.jenkins.library.steps.Start
|
|
import ru.pulsar.jenkins.library.ioc.ContextRegistry
|
|
|
|
void call(String executable, String params) {
|
|
ContextRegistry.registerDefaultContext(this)
|
|
|
|
Start start = new Start(executable, params)
|
|
start.run()
|
|
}
|