Jenkinsfile: Update to new Jenkins terminology

The Jenkins master is now known as the controller and the agent it provides is
called "built-in".

Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
Rob Bradford 2021-08-23 14:06:55 +01:00 committed by Bo Chen
parent ddf5a848d8
commit b347e192d3

2
Jenkinsfile vendored
View File

@ -2,7 +2,7 @@ pipeline{
agent none
stages {
stage ('Early checks') {
agent { node { label 'master' } }
agent { node { label 'built-in' } }
stages {
stage ('Check for RFC/WIP builds') {
when {