All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lib.hudson.buildStatusSummary.groovy Maven / Gradle / Ivy

// displays one line HTML summary of the build, which includes the difference
// from the previous build
//
// Usage: 

jelly {
  def s = build.getBuildStatusSummary();
  if(s.isWorse) {
    output.write("${s.message}");
  } else {
    output.write(s.message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy