Limit Jenkins to only one build at a time (#893)

This commit is contained in:
Matt Robinson 2018-12-17 15:33:59 -05:00 committed by GitHub
parent 98429e39fc
commit 6a79041602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
Jenkinsfile vendored
View File

@ -1,5 +1,5 @@
node('node') {
disableConcurrentBuilds()
properties([disableConcurrentBuilds()])
try {
currentBuild.result = "SUCCESS"