mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
eacec4279d
* add new step buildSetResult * set pipeline result in post stage * exclude buildSetResult from commonStepTests * extend pipeline test * remove post stage reference
5 lines
165 B
Groovy
5 lines
165 B
Groovy
void call(currentBuild, result = 'SUCCESS') {
|
|
echo "Current build result is ${currentBuild.result}, setting it to ${result}."
|
|
currentBuild.result = result
|
|
}
|