简体   繁体   中英

Jenkins: see which jobs share a lock

How to find in jenkins web user interface which jobs share a common lock?

(I mean without access to jenkins config.xml on file system)

Update: for example jobs "compile", "test" and "deploy" share a lock to avoid one of them to begin while another is running.

The simplest "lock" is the queue of the slave,
assumming you set it to run one job at a time.

Looking at the slave, you could see the list of jobs attached to it.

Also, if "compile" triggers "test" which triggers "deploy",
then you could set it so new jobs will not start while downstream jobs are still running.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM