Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
[FIXED JENKINS-26175] Exclusive execution mode can now be configured to
skip waiting for currently running jobs [FIXED JENKINS-24854] Shutdown mode is now also cancelled if job is canceled in pre-build phase [FIXED JENKINS-26351] Spanish translation added
- Loading branch information
Showing
with
67 additions
and 66 deletions.
- +4 −7 README
- +5 −0 pom.xml
- +47 −48 src/main/java/hudson/plugins/execution/exclusive/ExclusiveBuildWrapper.java
- +1 −1 src/main/resources/hudson/plugins/execution/exclusive/ExclusiveBuildWrapper/config.jelly
- +4 −4 src/main/resources/hudson/plugins/execution/exclusive/ExclusiveBuildWrapper/help.html
- +4 −4 src/main/resources/hudson/plugins/execution/exclusive/ExclusiveBuildWrapper/help_es.html
- +2 −2 src/main/resources/index.jelly
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
@@ -1,5 +1,5 @@ | ||
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler" xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson" xmlns:f="/lib/form"> | ||
<f:entry field="skipWaitOnRunningJobs"> | ||
<f:checkbox title="${%Do not wait till running jobs end}"/> | ||
</f:entry> | ||
</j:jelly> |
This file contains 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
@@ -1,6 +1,6 @@ | ||
Set this flag to prevent other jobs from starting once this job has started.<br /> | ||
<br /> | ||
Jenkins is put in shutdown mode when this job is started. Build steps are not actually executed until this job is the only one running,<br/> | ||
unless optional flag "Do not wait till running jobs end"</i> is enabled.<br/> | ||
<br /> | ||
At the end of the build the Jenkins shutdown mode is canceled. |
This file contains 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
@@ -1,6 +1,6 @@ | ||
Activar esta opción para impedir que otros trabajos comiencen una vez que este trabajo ha comenzado.<br /> | ||
<br /> | ||
Cuando el trabajo comienza se pone Jenkins en modo apagado. Los pasos de la fase de construcción no se ejecutan realmente hasta que éste <br/> | ||
es el único trabajo que queda en ejecución, a menos que se habilite la opción <i>"No esperar a que terminen los trabajos en ejecución"</i>.<br/> | ||
<br/> | ||
Cuando finaliza la construcción se cancela el modo apagado de Jenkins. |
This file contains 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
@@ -1,3 +1,3 @@ | ||
<div> | ||
This plugin allows configuring a job to prevent the rest from starting its execution while this is running. | ||
</div> |