1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2024-12-04 10:34:42 +02:00
jenkins-lib/vars/ringCommand.groovy

9 lines
266 B
Groovy
Raw Permalink Normal View History

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()
}