From 0dbc51890eb32ca908095bb4a47686334d348726 Mon Sep 17 00:00:00 2001 From: Sridhar Periyasamy Date: Wed, 21 Oct 2015 12:39:14 -0700 Subject: [PATCH] Using 'InternalUtilities.getFullJobName' instead of 'Utilities.getFullJobName' to generate the correct Jenkins project name. --- netci.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netci.groovy b/netci.groovy index c75225dfd..c80e9f24d 100644 --- a/netci.groovy +++ b/netci.groovy @@ -36,7 +36,7 @@ def static getBuildJobName(def configuration, def os) { } // Create the new job - def newCommitJob = job(Utilities.getFullJobName(project, jobName, false)) { + def newCommitJob = job(InternalUtilities.getFullJobName(project, jobName, false)) { // Set the label. label(machineLabelMap[os]) steps { @@ -58,7 +58,7 @@ def static getBuildJobName(def configuration, def os) { Utilities.addGithubPushTrigger(newCommitJob) - def newPRJob = job(Utilities.getFullJobName(project, jobName, true)) { + def newPRJob = job(InternalUtilities.getFullJobName(project, jobName, true)) { // Set the label. label(machineLabelMap[os]) steps {