c88f827686
Lets one execute a shell/groovy script or any builder AFTER the build has complete. https://wiki.jenkins-ci.org/display/JENKINS/PostBuildScript+Plugin All existing builders should be supported since this patch call the usual dispatcher. Change-Id: Ide059ec9fd0e556f0c50ec992a6021eb5afb261c
10 lines
321 B
XML
10 lines
321 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project>
|
|
<publishers>
|
|
<org.jenkinsci.plugins.postbuildscript.PostBuildScript>
|
|
<scriptOnlyIfSuccess>true</scriptOnlyIfSuccess>
|
|
<scriptOnlyIfFailure>false</scriptOnlyIfFailure>
|
|
</org.jenkinsci.plugins.postbuildscript.PostBuildScript>
|
|
</publishers>
|
|
</project>
|