mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
3f54eb74bc
* Move cloudFoundryCreateServiceKey * Adapt tests * Update defaults * Fix Unittest * Fix test * Adapt test * Fix * Adapt
28 lines
1.0 KiB
Groovy
28 lines
1.0 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
|
|
}
|
|
|
|
}
|