Disabled concurrent builds in Jenkinsfile.

This commit is contained in:
Harrison Deng 2022-05-16 14:59:53 -05:00
parent a19a39014d
commit 054567144b

3
Jenkinsfile vendored
View File

@ -1,5 +1,8 @@
pipeline {
agent any
options {
disableConcurrentBuilds()
}
stages {
stage("run server") {
when {