Skip to content

Commit 68155d8

Browse files
[nightly] Update common Docker engineering infrastructure with latest (#6313)
1 parent 8e8d6c9 commit 68155d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

eng/common/Install-DotNetSdk.ps1

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ $DotnetChannel = "9.0"
4545
$InstallFailed = $false
4646
if ($IsRunningOnUnix) {
4747
& chmod +x $DotnetInstallScriptPath
48-
& $DotnetInstallScriptPath --channel $DotnetChannel --install-dir $InstallPath
48+
& "$PSScriptRoot/Invoke-WithRetry.ps1" "$DotnetInstallScriptPath --channel $DotnetChannel --install-dir $InstallPath" -Retries 5
4949
$InstallFailed = ($LASTEXITCODE -ne 0)
5050
}
5151
else {
52-
& $DotnetInstallScriptPath -Channel $DotnetChannel -InstallDir $InstallPath
52+
& "$PSScriptRoot/Invoke-WithRetry.ps1" "$DotnetInstallScriptPath -Channel $DotnetChannel -InstallDir $InstallPath" -Retries 5
5353
$InstallFailed = (-not $?)
5454
}
5555

eng/common/templates/variables/docker-images.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variables:
2-
imageNames.imageBuilderName: mcr.microsoft.com/dotnet-buildtools/image-builder:2657098
2+
imageNames.imageBuilderName: mcr.microsoft.com/dotnet-buildtools/image-builder:2660728
33
imageNames.imageBuilder: $(imageNames.imageBuilderName)
44
imageNames.imageBuilder.withrepo: imagebuilder-withrepo:$(Build.BuildId)-$(System.JobId)
55
imageNames.testRunner: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux3.0-docker-testrunner

0 commit comments

Comments
 (0)