2021-06-15 14:34:56 +02:00
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
import groovy.transform.Field
|
|
|
|
|
|
|
|
@Field def STEP_NAME = getClass().getName()
|
|
|
|
|
|
|
|
void call(Map parameters = [:]) {
|
|
|
|
final script = checkScript(this, parameters) ?: this
|
2021-06-16 18:04:37 +02:00
|
|
|
String piperGoPath = parameters?.piperGoPath ?: './piper'
|
2025-02-14 15:46:51 +02:00
|
|
|
String command = "${piperGoPath} writePipelineEnv"
|
|
|
|
|
|
|
|
if (parameters.value) {
|
|
|
|
command += " --value '${parameters.value}'"
|
2021-06-15 14:34:56 +02:00
|
|
|
}
|
2025-02-14 15:46:51 +02:00
|
|
|
Map cpe = script?.commonPipelineEnvironment?.getCPEMap(script)
|
|
|
|
if (cpe == null) return
|
2021-06-15 14:34:56 +02:00
|
|
|
|
2025-02-11 15:59:03 +05:30
|
|
|
def jsonMap = groovy.json.JsonOutput.toJson(cpe)
|
2025-02-14 15:46:51 +02:00
|
|
|
if (!jsonMap) {
|
|
|
|
script.echo("can't write pipelineEnvironment: empty environment")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
withEnv(["PIPER_pipelineEnv=${jsonMap}"]) {
|
|
|
|
def output = script.sh(returnStdout: true, script: command)
|
|
|
|
if (parameters?.verbose) {
|
|
|
|
script.echo("wrote commonPipelineEnvironment: ${output}")
|
2025-02-11 15:59:03 +05:30
|
|
|
}
|
2021-06-16 18:04:37 +02:00
|
|
|
}
|
2021-06-15 14:34:56 +02:00
|
|
|
}
|