2020-10-02 17:03:43 +02:00
|
|
|
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 = []
|
|
|
|
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus(STAGE_STEP_KEYS)
|
|
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
|
|
|
|
/**
|
2020-12-10 15:28:03 +02:00
|
|
|
* This stage asks for the approval to publish the previously built Add-on for the SAP Cloud Platform ABAP Environment
|
2020-10-02 17:03:43 +02:00
|
|
|
*/
|
|
|
|
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-12-10 15:28:03 +02:00
|
|
|
input(message: 'Do you want to publish this Add-on Product?')
|
2020-10-02 17:03:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|