import com.sap.piper.ConfigurationHelper import com.sap.piper.GenerateStageDocumentation import com.sap.piper.Utils 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 = [ /** For Cloud Foundry use-cases: Performs deployment to Cloud Foundry space/org. */ 'cloudFoundryDeploy', /** Performs health check in order to prove that deployment was successful. */ 'healthExecuteCheck', /** For Neo use-cases: Performs deployment to Neo landscape. */ 'neoDeploy', /** Publishes release information to GitHub. */ 'githubPublishRelease', ] @Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus(STAGE_STEP_KEYS) @Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS /** * This stage is responsible to release/deploy artifacts into your productive landscape.
*/ @GenerateStageDocumentation(defaultStageName = 'Release') void call(Map parameters = [:]) { def script = checkScript(this, parameters) ?: this def utils = parameters.juStabUtils ?: new Utils() def stageName = parameters.stageName?:env.STAGE_NAME Map config = ConfigurationHelper.newInstance(this) .loadStepDefaults() .mixinGeneralConfig(script.commonPipelineEnvironment, GENERAL_CONFIG_KEYS) .mixinStageConfig(script.commonPipelineEnvironment, stageName, STEP_CONFIG_KEYS) .mixin(parameters, PARAMETER_KEYS) .addIfEmpty('cloudFoundryDeploy', script.commonPipelineEnvironment.configuration.runStep?.get(stageName)?.cloudFoundryDeploy) .addIfEmpty('githubPublishRelease', script.commonPipelineEnvironment.configuration.runStep?.get(stageName)?.githubPublishRelease) .addIfEmpty('healthExecuteCheck', script.commonPipelineEnvironment.configuration.runStep?.get(stageName)?.healthExecuteCheck) .addIfEmpty('neoDeploy', script.commonPipelineEnvironment.configuration.runStep?.get(stageName)?.neoDeploy) .use() piperStageWrapper (script: script, stageName: stageName) { // telemetry reporting utils.pushToSWA([step: STEP_NAME], config) if (config.cloudFoundryDeploy) { durationMeasure(script: script, measurementName: 'deploy_release_cf_duration') { cloudFoundryDeploy script: script } } if (config.neoDeploy) { durationMeasure(script: script, measurementName: 'deploy_release_neo_duration') { neoDeploy script: script } } if (config.healthExecuteCheck) { healthExecuteCheck script: script } if (config.githubPublishRelease) { githubPublishRelease script: script } } }