mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
43 lines
1.5 KiB
Groovy
43 lines
1.5 KiB
Groovy
import com.sap.piper.GenerateStageDocumentation
|
|
import com.sap.piper.ReportAggregator
|
|
import com.sap.piper.StageNameProvider
|
|
import com.sap.piper.Utils
|
|
import groovy.transform.Field
|
|
|
|
import static com.sap.piper.Prerequisites.checkScript
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String TECHNICAL_STAGE_NAME = 'artifactDeployment'
|
|
|
|
@Field Set GENERAL_CONFIG_KEYS = []
|
|
@Field Set STAGE_STEP_KEYS = []
|
|
@Field Set STAGE_CONFIG_KEYS = STAGE_STEP_KEYS
|
|
@Field Set PARAMETER_KEYS = STAGE_CONFIG_KEYS
|
|
|
|
/**
|
|
* This stage is responsible for releasing/deploying artifacts to a Nexus Repository Manager.<br />
|
|
*/
|
|
@GenerateStageDocumentation(defaultStageName = 'artifactDeployment')
|
|
void call(Map parameters = [:]) {
|
|
final script = checkScript(this, parameters) ?: this
|
|
def utils = parameters.juStabUtils ?: new Utils()
|
|
def stageName = StageNameProvider.instance.getStageName(script, parameters, this)
|
|
|
|
piperStageWrapper(stageName: stageName, script: script) {
|
|
|
|
def commonPipelineEnvironment = script.commonPipelineEnvironment
|
|
List unstableSteps = commonPipelineEnvironment?.getValue('unstableSteps') ?: []
|
|
if (unstableSteps) {
|
|
piperPipelineStageConfirm script: script
|
|
unstableSteps = []
|
|
commonPipelineEnvironment.setValue('unstableSteps', unstableSteps)
|
|
}
|
|
|
|
withEnv(["STAGE_NAME=${stageName}"]) {
|
|
nexusUpload(script: script)
|
|
}
|
|
|
|
ReportAggregator.instance.reportDeploymentToNexus()
|
|
}
|
|
}
|