Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions netci.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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)
Expand Down