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
55 additions
and 15 deletions.
- +40 −10 src/main/java/hudson/plugins/execution/exclusive/ExclusiveBuildWrapper.java
- +3 −4 src/main/resources/hudson/plugins/execution/exclusive/ExclusiveBuildWrapper/config.jelly
- +1 −0 src/main/resources/hudson/plugins/execution/exclusive/ExclusiveBuildWrapper/config_es.properties
- +3 −1 src/main/resources/hudson/plugins/execution/exclusive/Messages.properties
- +8 −0 src/main/resources/hudson/plugins/execution/exclusive/Messages_es.properties
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
@@ -1,6 +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="skipWait"> | ||
<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
@@ -0,0 +1 @@ | ||
Do\ not\ wait\ till\ running\ jobs\ end=No esperar a que terminen los trabajos en ejecución |
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,8 @@ | ||
ExclusiveBuildWrapper.DisplayName=Set exclusive execution | ||
ExclusiveBuildWrapper.shutdownMessage=Putting Jenkins in shutdown mode... | ||
ExclusiveBuildWrapper.executingOn=Executing on | ||
ExclusiveBuildWrapper.errorQuietMode=Couldn't put Jenkins in quiet mode, | ||
ExclusiveBuildWrapper.onlyJobRunning=Only this job is running; starting execution... | ||
ExclusiveBuildWrapper.waiting=Waiting for running jobs... | ||
ExclusiveBuildWrapper.waitSkipped=Waiting for running jobs skipped; starting execution... | ||
ExclusiveBuildWrapper.cancelShutDownMode=Canceling Jenkins shutdown mode... |
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
@@ -0,0 +1,8 @@ | ||
ExclusiveBuildWrapper.DisplayName=Activar ejecución exclusiva | ||
ExclusiveBuildWrapper.shutdownMessage=Poniendo Jenkins en modo apagado... | ||
ExclusiveBuildWrapper.executingOn=Ejecutando en | ||
ExclusiveBuildWrapper.errorQuietMode=No se pudo poner Jenkins en modo silencioso, | ||
ExclusiveBuildWrapper.onlyJobRunning=Éste es el único trabajo en ejecución; comenzando ejecución... | ||
ExclusiveBuildWrapper.waiting=Esperando finalización de trabajos en ejecución... | ||
ExclusiveBuildWrapper.waitSkipped=Espera de finalización de trabajos en ejecución omitida; comenzando ejecución... | ||
ExclusiveBuildWrapper.cancelShutDownMode=Cancelando el modo apagado de Jenkins... |