Jenkinsfile is now selective of the build agent.

This commit is contained in:
Harrison Deng 2022-05-16 21:05:02 -05:00
parent c932b18297
commit a707700a0c

4
Jenkinsfile vendored
View File

@ -1,5 +1,7 @@
pipeline {
agent any
agent {
label 'linux && increased_mem'
}
options {
disableConcurrentBuilds()
}