forked from jenkinsci/exclusive-execution-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
17 lines (9 loc) · 614 Bytes
/
README
File metadata and controls
17 lines (9 loc) · 614 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Allows a job to be executed when no other jobs are allowed to run
The pre-job steps are:
1. The plugin will initiate a shutdown mode which means that no other jobs can be started.
2. it waits until every job execept this one is finished and then starts to execute the job.
The post-job steps are:
1. Inactivates jenkins shutdown mode
Combining this plugin with for instance scheduled build will pause the build queue and let executing jobs
finish before invoking this job. When this job is done, it unpauses the build queue.
Plugin is created by Marco Ambu but almost completely rewritten by Sam Tavakoli.