Skip to content

Commit 91411fc

Browse files
[main] Update dependencies from dotnet/arcade
1 parent 76dead0 commit 91411fc

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed

eng/Version.Details.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<ProductDependencies>
44
</ProductDependencies>
55
<ToolsetDependencies>
6-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.21466.4">
6+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="7.0.0-beta.21474.2">
77
<Uri>https://github.com/dotnet/arcade</Uri>
8-
<Sha>734d875ba2abfb5c8f5f52368e7d4711ee366e31</Sha>
8+
<Sha>3ea0d860c6973f2cbadc9e895c7ec2cbdaec4ad5</Sha>
99
</Dependency>
1010
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="5.0.0-alpha.1.20473.1">
1111
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>

eng/common/tools.ps1

+18-8
Original file line numberDiff line numberDiff line change
@@ -709,14 +709,7 @@ function MSBuild() {
709709
Write-PipelineSetVariable -Name 'NUGET_PLUGIN_REQUEST_TIMEOUT_IN_SECONDS' -Value '20'
710710
}
711711

712-
if ($ci) {
713-
$env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true'
714-
$env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6
715-
$env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000
716-
Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true'
717-
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6'
718-
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000'
719-
}
712+
Enable-Nuget-EnhancedRetry
720713

721714
$toolsetBuildProject = InitializeToolset
722715
$basePath = Split-Path -parent $toolsetBuildProject
@@ -764,6 +757,8 @@ function MSBuild-Core() {
764757
}
765758
}
766759

760+
Enable-Nuget-EnhancedRetry
761+
767762
$buildTool = InitializeBuildTool
768763

769764
$cmdArgs = "$($buildTool.Command) /m /nologo /clp:Summary /v:$verbosity /nr:$nodeReuse /p:ContinuousIntegrationBuild=$ci"
@@ -904,3 +899,18 @@ function Try-LogClientIpAddress()
904899
Write-Host "Unable to get this machine's effective IP address for logging: $_"
905900
}
906901
}
902+
903+
#
904+
# If $ci flag is set, turn on (and log that we did) special environment variables for improved Nuget client retry logic.
905+
#
906+
function Enable-Nuget-EnhancedRetry() {
907+
if ($ci) {
908+
Write-Host "Setting NUGET enhanced retry environment variables"
909+
$env:NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY = 'true'
910+
$env:NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT = 6
911+
$env:NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS = 1000
912+
Write-PipelineSetVariable -Name 'NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY' -Value 'true'
913+
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT' -Value '6'
914+
Write-PipelineSetVariable -Name 'NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS' -Value '1000'
915+
}
916+
}

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"dotnet": "6.0.100-rc.1.21430.12"
44
},
55
"msbuild-sdks": {
6-
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21466.4"
6+
"Microsoft.DotNet.Arcade.Sdk": "7.0.0-beta.21474.2"
77
}
88
}

0 commit comments

Comments
 (0)