1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/vars/abapEnvironmentPipelineStagePost.groovy
Daniel Mieg ae213a013e
Add stages for build process to ABAP Environment Pipeline (#2052)
* Add stages for build process

* fix typo

* Add createServiceKey to Build stage

* Fix typo

* Inital Checks is required when Build stage is exec

* Switch Order

* Fix Typo

* Add parameter for confirmation

* add "addIfEmpty"

* Add import

* revert

* revert2

* Remove import

* revert3

* Add stages to docu

* Update image
2020-10-02 17:03:43 +02:00

28 lines
1.0 KiB
Groovy

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 = [
/** Deletes a SAP Cloud Platform ABAP Environment instance via the cloud foundry command line interface */
'cloudFoundryDeleteService'
]
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus(STAGE_STEP_KEYS)
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
/**
* This stage cleans up the ABAP Environment Pipeline run
*/
void call(Map parameters = [:]) {
def script = checkScript(this, parameters) ?: this
def stageName = parameters.stageName?:env.STAGE_NAME
stageName = stageName.replace('Declarative: ', '')
stageName = stageName.replace(' Actions', '')
piperStageWrapper (script: script, stageName: stageName, stashContent: [], stageLocking: false) {
if(parameters.script.commonPipelineEnvironment.configuration.runStage?.get("Prepare System")) {
cloudFoundryDeleteService script: parameters.script
}
}
}