Skip to content

Instantly share code, notes, and snippets.

@dino-su
Created July 12, 2019 10:16
Show Gist options
  • Save dino-su/47761488f2135a18fa8f604eb566d50a to your computer and use it in GitHub Desktop.
Save dino-su/47761488f2135a18fa8f604eb566d50a to your computer and use it in GitHub Desktop.
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