pipeline { agent none options { // Only keep the 1 most recent builds buildDiscarder(logRotator(numToKeepStr: "1")) } stages { stage("Build") { agent { label 'c++' } steps { echo "build" } } } }