2020-04-29 13:09:54 +03:00
|
|
|
import ru.pulsar.jenkins.library.configuration.JobConfiguration
|
|
|
|
import ru.pulsar.jenkins.library.ioc.ContextRegistry
|
2021-09-08 17:19:38 +05:00
|
|
|
import ru.pulsar.jenkins.library.steps.DesignerToEdtFormatTransformation
|
2020-04-29 13:09:54 +03:00
|
|
|
|
2020-04-30 17:03:11 +03:00
|
|
|
def call(JobConfiguration config) {
|
2020-04-29 13:09:54 +03:00
|
|
|
ContextRegistry.registerDefaultContext(this)
|
|
|
|
|
2021-09-08 17:19:38 +05:00
|
|
|
def edtTransform = new DesignerToEdtFormatTransformation(config)
|
2020-04-29 13:09:54 +03:00
|
|
|
edtTransform.run()
|
|
|
|
}
|