Using 'InternalUtilities.getFullJobName' instead of 'Utilities.getFullJobName' to generate the correct Jenkins project name.

This commit is contained in:
Sridhar Periyasamy 2015-10-21 12:39:14 -07:00
parent 05513e60e2
commit 0dbc51890e

View file

@ -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 {