-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: throttle-concurrent-builds-plugin
-
Environment:Jenkins 2.303.2
Throttle Concurrent Builds Plug-in 2.8
I have setĀ Throttle Concurrent BuildsĀ like below:

and my pipeline scripts like below:
//代ē å ä½ē¬¦ node("m1||travis") { stage("Prepage"){ //some task like git checkout } stage("Build") { //some code like xcodebuild } }
as the code shows, I'm using scripted pipeline. And I found that event though I have set the number of Maximum Concurrent Builds Per Node to 1, Jenkins still build 2 jobs on same node concurrently.