jenkins-shared-library/vars/renderTemplate.groovy
2025-02-06 07:27:04 +08:00

5 lines
172 B
Groovy

def call(input, binding) {
def engine = new groovy.text.GStringTemplateEngine()
def template = engine.createTemplate(input).make(binding)
return template.toString()
}