From 19647a3e4855063298c1b5056944b18c9dd96267 Mon Sep 17 00:00:00 2001 From: Russ Keldorph Date: Mon, 31 Oct 2016 16:18:11 -0700 Subject: Make dotnet/coreclr reference corresponding dotnet/corefx branch We run CoreFx tests under JitStress modes in CoreCLR. Previously, we were always pulling down CoreFx master, which is bad for CoreCLR release branches when things are out of synch. --- netci.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'netci.groovy') diff --git a/netci.groovy b/netci.groovy index 2ceb39dea6..7a64274383 100755 --- a/netci.groovy +++ b/netci.groovy @@ -1588,7 +1588,7 @@ combinedScenarios.each { scenario -> // thinks that %workspace% is the project base directory. buildCommands += "powershell new-item clr -type directory -force" buildCommands += 'powershell foreach ($x in get-childitem -force) { if (\$x.name -ne \'clr\') { move-item $x clr }}' - buildCommands += "git clone https://github.com/dotnet/corefx fx" + buildCommands += "git clone -b $branch --single-branch https://github.com/dotnet/corefx fx" buildCommands += getStressModeEnvSetCmd(os, scenario); @@ -1729,7 +1729,7 @@ combinedScenarios.each { scenario -> buildCommands += "rm -rf .clr; mkdir .clr; mv * .clr; mv .git .clr; mv .clr clr" // Get corefx - buildCommands += "git clone https://github.com/dotnet/corefx fx" + buildCommands += "git clone -b $branch --single-branch https://github.com/dotnet/corefx fx" // Set environment variable def setEnvVar = getStressModeEnvSetCmd(os, scenario) -- cgit v1.2.3