summaryrefslogtreecommitdiff
path: root/netci.groovy
diff options
context:
space:
mode:
authorRuss Keldorph <russ.keldorph@microsoft.com>2016-10-31 16:52:44 -0700
committerGitHub <noreply@github.com>2016-10-31 16:52:44 -0700
commitf3c19d782ae9d2575cedd9f1a8c2e2bdc081200e (patch)
treef1afc5d837a56ae31b799816846f5d6f56b09866 /netci.groovy
parentf8b8b6ab80f1c5b30cc04676ca2e084ce200161e (diff)
parent19647a3e4855063298c1b5056944b18c9dd96267 (diff)
downloadcoreclr-f3c19d782ae9d2575cedd9f1a8c2e2bdc081200e.tar.gz
coreclr-f3c19d782ae9d2575cedd9f1a8c2e2bdc081200e.tar.bz2
coreclr-f3c19d782ae9d2575cedd9f1a8c2e2bdc081200e.zip
Merge pull request #7918 from RussKeldorph/repoint-corefx-1.1.0
Make dotnet/coreclr reference corresponding dotnet/corefx branch
Diffstat (limited to 'netci.groovy')
-rwxr-xr-xnetci.groovy4
1 files changed, 2 insertions, 2 deletions
diff --git a/netci.groovy b/netci.groovy
index d46c496d7e..3bba51d6fb 100755
--- a/netci.groovy
+++ b/netci.groovy
@@ -1841,7 +1841,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);
@@ -2008,7 +2008,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)