mirror of
https://github.com/firstBitMarksistskaya/jenkins-lib.git
synced 2024-12-04 10:34:42 +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()
|
||
|
}
|