We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b078ae commit bb43937Copy full SHA for bb43937
1 file changed
Jenkinsfile
@@ -3,6 +3,13 @@
3
pipeline {
4
agent none
5
6
+ options {
7
+ // After the Build stage the pipeline stalls, waiting for user input to confirm the release stage.
8
+ // This leaves the builds in a running state even though no work is being done. Enable this option
9
+ // to automatically cancel earlier stalled builds when a new one is started.
10
+ disableConcurrentBuilds(abortPrevious: true)
11
+ }
12
+
13
tools {
14
jdk "jdk-17.0.1"
15
}
0 commit comments