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