hudson.plugins.PerfPublisher.HealthPublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfpublisher Show documentation
Show all versions of perfpublisher Show documentation
The PerfPublisher plug-in scans for xml tests reports defined in the administration panel and generates trend graphs, computes stats and underline regressions and modifications. The xml files must be generated by your own testing tool.
package hudson.plugins.PerfPublisher;
import java.io.IOException;
import java.io.PrintStream;
import hudson.model.Descriptor;
import hudson.tasks.Publisher;
import hudson.model.AbstractBuild;
import hudson.Launcher;
import hudson.model.BuildListener;
public abstract class HealthPublisher extends Publisher {
public boolean perform(final AbstractBuild, ?> build, final Launcher launcher, final BuildListener listener) throws InterruptedException, IOException {
return true;
}
}