mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
68 lines
2.5 KiB
Groovy
68 lines
2.5 KiB
Groovy
import com.sap.piper.GitUtils
|
|
import groovy.transform.Field
|
|
|
|
import com.sap.piper.ConfigurationHelper
|
|
import com.sap.piper.ConfigurationMerger
|
|
import com.sap.piper.cm.ChangeManagement
|
|
import com.sap.piper.cm.ChangeManagementException
|
|
|
|
import hudson.AbortException
|
|
|
|
|
|
@Field def STEP_NAME = 'transportRequestRelease'
|
|
|
|
@Field Set stepConfigurationKeys = [
|
|
'credentialsId',
|
|
'cmClientOpts',
|
|
'endpoint'
|
|
]
|
|
|
|
@Field Set parameterKeys = stepConfigurationKeys.plus([
|
|
'changeDocumentId',
|
|
'transportRequestId',
|
|
])
|
|
|
|
@Field Set generalConfigurationKeys = stepConfigurationKeys
|
|
|
|
def call(parameters = [:]) {
|
|
|
|
handlePipelineStepErrors (stepName: STEP_NAME, stepParameters: parameters) {
|
|
|
|
def script = parameters?.script ?: [commonPipelineEnvironment: commonPipelineEnvironment]
|
|
|
|
ChangeManagement cm = new ChangeManagement(script)
|
|
|
|
Map configuration = ConfigurationHelper
|
|
.loadStepDefaults(this)
|
|
.mixinGeneralConfig(script.commonPipelineEnvironment, generalConfigurationKeys)
|
|
.mixinStageConfig(script.commonPipelineEnvironment, parameters.stageName?:env.STAGE_NAME, stepConfigurationKeys)
|
|
.mixinStepConfig(script.commonPipelineEnvironment, stepConfigurationKeys)
|
|
.mixin(parameters, parameterKeys)
|
|
.withMandatoryProperty('changeDocumentId')
|
|
.withMandatoryProperty('transportRequestId')
|
|
.withMandatoryProperty('endpoint')
|
|
.use()
|
|
|
|
echo "[INFO] Closing transport request '${configuration.transportRequestId}' for change document '${configuration.changeDocumentId}'."
|
|
|
|
withCredentials([usernamePassword(
|
|
credentialsId: configuration.credentialsId,
|
|
passwordVariable: 'password',
|
|
usernameVariable: 'username')]) {
|
|
|
|
try {
|
|
cm.releaseTransportRequest(configuration.changeDocumentId,
|
|
configuration.transportRequestId,
|
|
configuration.endpoint,
|
|
username,
|
|
password,
|
|
configuration.cmClientOpts)
|
|
} catch(ChangeManagementException ex) {
|
|
throw new AbortException(ex.getMessage())
|
|
}
|
|
}
|
|
|
|
echo "[INFO] Transport Request '${configuration.transportRequestId}' has been successfully closed."
|
|
}
|
|
}
|