Thường khi click liên tục build thì các job sẽ được song song như hình dưới

nếu bạn muốn disable Concurrent Builds thì làm như sau:
pipeline{
agent{
label "k8s-permanent"
}
options {
disableConcurrentBuilds()
}
stages{
stage("Build"){
steps{
sleep(time:10, unit: "SECONDS")
echo "Building"
}
}
}
}

Bài ngắn vl