mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
f1a5b6a918
* new checks for commitIDs * new checks for commitIDs * relocate step from build stage to initial checks + refac * log list * fix log + check * log format * fix unit tests Co-authored-by: Christian Luttenberger <42861202+bluesbrother84@users.noreply.github.com>
28 lines
990 B
Groovy
28 lines
990 B
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 = [
|
|
'abapAddonAssemblyKitCheckPV',
|
|
'abapAddonAssemblyKitCheckCVs'
|
|
]
|
|
@Field Set STEP_CONFIG_KEYS = GENERAL_CONFIG_KEYS.plus(STAGE_STEP_KEYS)
|
|
@Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS
|
|
/**
|
|
* This stage runs initial checks for the build process for an AddOn for the SAP Cloud Platform ABAP Environment
|
|
*/
|
|
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) {
|
|
abapAddonAssemblyKitCheckPV script: parameters.script
|
|
abapAddonAssemblyKitCheckCVs script: parameters.script
|
|
abapAddonAssemblyKitReserveNextPackages script: parameters.script
|
|
}
|
|
|
|
}
|