Skip to content

Commit 6004f1d

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20201221.12 (#28878)
[master] Update dependencies from dotnet/arcade
1 parent 9b00448 commit 6004f1d

File tree

5 files changed

+31
-16
lines changed

5 files changed

+31
-16
lines changed

eng/Version.Details.xml

+6-6
Original file line numberDiff line numberDiff line change
@@ -309,17 +309,17 @@
309309
<Uri>https://github.com/dotnet/runtime</Uri>
310310
<Sha>5078dd61a81c88dbdd131a77b8148b4dee3803fa</Sha>
311311
</Dependency>
312-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.20616.18">
312+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="6.0.0-beta.20621.12">
313313
<Uri>https://github.com/dotnet/arcade</Uri>
314-
<Sha>26b005488dd7ddf6356873cb01a7b763a82a9622</Sha>
314+
<Sha>3ba79fbd73d6765b67d0f75ac9dac148d6bea346</Sha>
315315
</Dependency>
316-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="6.0.0-beta.20616.18">
316+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="6.0.0-beta.20621.12">
317317
<Uri>https://github.com/dotnet/arcade</Uri>
318-
<Sha>26b005488dd7ddf6356873cb01a7b763a82a9622</Sha>
318+
<Sha>3ba79fbd73d6765b67d0f75ac9dac148d6bea346</Sha>
319319
</Dependency>
320-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="6.0.0-beta.20616.18">
320+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="6.0.0-beta.20621.12">
321321
<Uri>https://github.com/dotnet/arcade</Uri>
322-
<Sha>26b005488dd7ddf6356873cb01a7b763a82a9622</Sha>
322+
<Sha>3ba79fbd73d6765b67d0f75ac9dac148d6bea346</Sha>
323323
</Dependency>
324324
</ToolsetDependencies>
325325
</Dependencies>

eng/Versions.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
<MicrosoftEntityFrameworkCoreVersion>6.0.0-alpha.1.20622.2</MicrosoftEntityFrameworkCoreVersion>
142142
<MicrosoftEntityFrameworkCoreDesignVersion>6.0.0-alpha.1.20622.2</MicrosoftEntityFrameworkCoreDesignVersion>
143143
<!-- Packages from dotnet/arcade -->
144-
<MicrosoftDotNetBuildTasksInstallersVersion>6.0.0-beta.20616.18</MicrosoftDotNetBuildTasksInstallersVersion>
144+
<MicrosoftDotNetBuildTasksInstallersVersion>6.0.0-beta.20621.12</MicrosoftDotNetBuildTasksInstallersVersion>
145145
</PropertyGroup>
146146
<!--
147147

eng/common/post-build/publish-using-darc.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ try {
2222
$optionalParams = [System.Collections.ArrayList]::new()
2323

2424
if ("" -ne $ArtifactsPublishingAdditionalParameters) {
25-
$optionalParams.Add("artifact-publishing-parameters") | Out-Null
25+
$optionalParams.Add("--artifact-publishing-parameters") | Out-Null
2626
$optionalParams.Add($ArtifactsPublishingAdditionalParameters) | Out-Null
2727
}
2828

2929
if ("" -ne $SymbolPublishingAdditionalParameters) {
30-
$optionalParams.Add("symbol-publishing-parameters") | Out-Null
30+
$optionalParams.Add("--symbol-publishing-parameters") | Out-Null
3131
$optionalParams.Add($SymbolPublishingAdditionalParameters) | Out-Null
3232
}
3333

eng/common/tools.ps1

+20-5
Original file line numberDiff line numberDiff line change
@@ -439,11 +439,26 @@ function LocateVisualStudio([object]$vsRequirements = $null){
439439
if (!(Test-Path $vsWhereExe)) {
440440
Create-Directory $vsWhereDir
441441
Write-Host 'Downloading vswhere'
442-
try {
443-
Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -OutFile $vswhereExe
444-
}
445-
catch {
446-
Write-PipelineTelemetryError -Category 'InitializeToolset' -Message $_
442+
$maxRetries = 5
443+
$retries = 1
444+
445+
while($true) {
446+
try {
447+
Invoke-WebRequest "https://netcorenativeassets.blob.core.windows.net/resource-packages/external/windows/vswhere/$vswhereVersion/vswhere.exe" -OutFile $vswhereExe
448+
break
449+
}
450+
catch{
451+
Write-PipelineTelemetryError -Category 'InitializeToolset' -Message $_
452+
}
453+
454+
if (++$retries -le $maxRetries) {
455+
$delayInSeconds = [math]::Pow(2, $retries) - 1 # Exponential backoff
456+
Write-Host "Retrying. Waiting for $delayInSeconds seconds before next attempt ($retries of $maxRetries)."
457+
Start-Sleep -Seconds $delayInSeconds
458+
}
459+
else {
460+
Write-PipelineTelemetryError -Category 'InitializeToolset' -Message "Unable to download file in $maxRetries attempts."
461+
}
447462
}
448463
}
449464

global.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"msbuild-sdks": {
3232
"Yarn.MSBuild": "1.22.10",
33-
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.20616.18",
34-
"Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.20616.18"
33+
"Microsoft.DotNet.Arcade.Sdk": "6.0.0-beta.20621.12",
34+
"Microsoft.DotNet.Helix.Sdk": "6.0.0-beta.20621.12"
3535
}
3636
}

0 commit comments

Comments
 (0)