CI: Rename 'master' node to 'built-in'

Jenkins renamed the 'master' node to 'built-in' in version
2.319 so we have to adjust as well.

Change-Id: Ice663c3a66d0eedf76e8e5fe530328455991ec25
This commit is contained in:
George Joseph 2021-11-08 06:00:55 -07:00
parent 608e52c939
commit 301647788e
1 changed files with 2 additions and 2 deletions

View File

@ -175,10 +175,10 @@ Map merge(Map onto, Map... overrides) {
/*
* The job setup steps such as reading the config file and merging the
* defaults can be done on the "master" node before we send the job off
* defaults can be done on the "built-in" node before we send the job off
* to an agent.
*/
node('master') {
node('built-in') {
def tempJobConfig
configFileProvider([configFile(fileId: 'jobConfig',
replaceTokens: true, variable: 'JOB_CONFIG_FILE')]) {