2020-06-23 15:56:56 +02:00
|
|
|
import com.cloudbees.groovy.cps.NonCPS
|
|
|
|
import com.sap.piper.GenerateStageDocumentation
|
|
|
|
import groovy.transform.Field
|
|
|
|
|
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
|
|
@Field Set GENERAL_CONFIG_KEYS = []
|
|
|
|
@Field STAGE_STEP_KEYS = [
|
|
|
|
/** Starts an ATC check run on the ABAP Environment instance */
|
|
|
|
'abapEnvironmentRunATCCheck'
|
|
|
|
]
|
|
|
|
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus(STAGE_STEP_KEYS)
|
|
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
|
|
|
|
/**
|
|
|
|
* This stage runs the ATC Checks
|
|
|
|
*/
|
|
|
|
void call(Map parameters = [:]) {
|
|
|
|
def script = checkScript(this, parameters) ?: this
|
|
|
|
def stageName = parameters.stageName?:env.STAGE_NAME
|
|
|
|
|
|
|
|
piperStageWrapper (script: script, stageName: stageName, stashContent: [], stageLocking: false) {
|
2020-07-08 15:39:53 +02:00
|
|
|
echo "Sleeping for 1 hour - this is a workaround required for ATC until release 2008"
|
|
|
|
sleep(time: 1, unit: "HOURS")
|
2020-06-23 15:56:56 +02:00
|
|
|
abapEnvironmentRunATCCheck script: parameters.script
|
|
|
|
}
|
|
|
|
}
|