You've already forked jenkins-lib
mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2025-07-05 05:01:10 +02:00
9 lines
266 B
Groovy
9 lines
266 B
Groovy
![]() |
import ru.pulsar.jenkins.library.ioc.ContextRegistry
|
||
|
import ru.pulsar.jenkins.library.steps.RingCommand
|
||
|
|
||
|
def call(String script ) {
|
||
|
ContextRegistry.registerDefaultContext(this)
|
||
|
|
||
|
RingCommand ringCommand = new RingCommand(script)
|
||
|
return ringCommand.run()
|
||
|
}
|