Skip to content

Commit 3941ea4

Browse files
committed
Fix up InternalUtilities now that the repo is public.
1 parent 4ee8260 commit 3941ea4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

netci.groovy

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import jobs.generation.ArchivalSettings;
44
import jobs.generation.Utilities;
5-
import jobs.generation.InternalUtilities;
65

76
def project = GithubProject
87
def branch = GithubBranchName
@@ -26,7 +25,7 @@ def branch = GithubBranchName
2625
def buildCommand = buildFile + " -$config -runtests"
2726
def packCommand = buildFile + " -buildPackages"
2827

29-
def newJob = job(InternalUtilities.getFullJobName(project, jobName, isPR)) {
28+
def newJob = job(Utilities.getFullJobName(project, jobName, isPR)) {
3029
steps {
3130
if (os == 'Windows_NT') {
3231
batchFile(buildCommand)
@@ -47,7 +46,7 @@ def branch = GithubBranchName
4746
}
4847

4948
Utilities.setMachineAffinity(newJob, osImageName, machineAffinity)
50-
InternalUtilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
49+
Utilities.standardJobSetup(newJob, project, isPR, "*/${branch}")
5150

5251
if (isPR) {
5352
Utilities.addGithubPRTriggerForBranch(newJob, branch, "$os $config")

0 commit comments

Comments
 (0)