mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-01-18 05:18:24 +02:00
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
|
||
|
}
|