1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-06 04:13:55 +02:00
sap-jenkins-library/vars/abapEnvironmentPipelineStagePrepareSystem.groovy
Daniel Mieg 712c568087
Create groovy step for abapEnvironmentCreateSystem (#2303)
* Create groovy step

* add to pipeline

* add includeAddon

* Adapt docu

* Adapt groovy test

* adapt stage addonBuild

* add comma

* Add to docu

* Upper case spelling

* Update docu

* adapt docu
2020-11-11 17:08:24 +01:00

30 lines
1.2 KiB
Groovy

import groovy.transform.Field
import com.sap.piper.Utils
import static com.sap.piper.Prerequisites.checkScript
@Field String STEP_NAME = getClass().getName()
@Field Set GENERAL_CONFIG_KEYS = []
@Field STAGE_STEP_KEYS = [
/** Creates a SAP Cloud Platform ABAP Environment instance via the cloud foundry command line interface */
'abapEnvironmentCreateSystem',
/** Creates Communication Arrangements for ABAP Environment instance via the cloud foundry command line interface */
'cloudFoundryCreateServiceKey'
]
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus(STAGE_STEP_KEYS)
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
/**
* This stage prepares the SAP Cloud Platform ABAP Environment systems
*/
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) {
abapEnvironmentCreateSystem script: parameters.script
input message: "Steampunk system ready? Please make sure that you received the confirmation email before proceeding!"
cloudFoundryCreateServiceKey script: parameters.script
}
}