diff --git a/Jenkinsfile b/Jenkinsfile index 5fd7f5728..f102d0f1f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,6 +1,11 @@ #!groovy node { + properties([ + // Don't run concurrent builds, because the ITs use the same port causing random failures on concurrent builds. + disableConcurrentBuilds() + ]) + cesFqdn = findHostName() cesUrl = "https://${cesFqdn}" credentials = usernamePassword(credentialsId: 'scmCredentials', passwordVariable: 'PASSWORD', usernameVariable: 'USERNAME')