Pipeline is now selective of build agent.

This commit is contained in:
Harrison Deng 2022-05-16 20:21:44 -05:00
parent 0da948064b
commit 43537c9517

5
Jenkinsfile vendored
View File

@ -1,8 +1,11 @@
pipeline { pipeline {
agent any agent {
label 'linux && increased_mem'
}
options { options {
disableConcurrentBuilds() disableConcurrentBuilds()
} }
stages { stages {
stage("run server") { stage("run server") {
when { when {