Created
July 12, 2019 10:16
-
-
Save dino-su/47761488f2135a18fa8f604eb566d50a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def project = jenkins.model.Jenkins.instance.getItemByFullName('PROJECT_NAME') | |
def build = project.getBuildByNumber(87) | |
build.@result = hudson.model.Result.SUCCESS | |
// build.@result = hudson.model.Result.NOT_BUILT | |
// build.@result = hudson.model.Result.UNSTABLE | |
// build.@result = hudson.model.Result.FAILURE | |
// build.@result = hudson.model.Result.ABORTED |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment