mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
8 lines
269 B
Groovy
8 lines
269 B
Groovy
def call(Map parameters = [:], body) {
|
|
handlePipelineStepErrors (stepName: 'pipelineStashFiles', stepParameters: parameters) {
|
|
pipelineStashFilesBeforeBuild(parameters)
|
|
body() //execute build
|
|
pipelineStashFilesAfterBuild(parameters)
|
|
}
|
|
}
|