Jenkins renamed the 'master' node to 'built-in' in version
2.319 so we have to adjust as well.
Change-Id: Ice663c3a66d0eedf76e8e5fe530328455991ec25
/*
* 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')]) {