File tree 5 files changed +5
-5
lines changed
libraries/Common/tests/System/Net/StressTests
mono/nuget/Microsoft.NET.Runtime.WorkloadTesting.Internal/Sdk
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ ENV _DOTNET_INSTALL_CHANNEL=$VERSION
20
20
RUN rm -rf /usr/share/dotnet
21
21
22
22
# Install latest daily SDK:
23
- RUN wget https://dot.net /v1/dotnet-install.sh
23
+ RUN wget https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh
24
24
RUN bash ./dotnet-install.sh --channel $_DOTNET_INSTALL_CHANNEL --quality daily --install-dir /usr/share/dotnet
25
25
26
26
# Collect the following artifacts under /live-runtime-artifacts,
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ USER ContainerAdministrator
14
14
# remove the existing ASP.NET SDK, we want to keep only the latest one we download later
15
15
RUN Remove-Item -Force -Recurse 'C:/Program Files/dotnet/shared/Microsoft.AspNetCore.App/*'
16
16
17
- RUN Invoke-WebRequest -Uri https://dot.net /v1/dotnet-install.ps1 -OutFile .\d otnet-install.ps1
17
+ RUN Invoke-WebRequest -Uri https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.ps1 -OutFile .\d otnet-install.ps1
18
18
RUN & .\d otnet-install.ps1 -Channel $env:_DOTNET_INSTALL_CHANNEL -Quality daily -InstallDir 'C:/Program Files/dotnet'
19
19
20
20
USER ContainerUser
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ if (-not (Test-Path -Path $TestHostRoot)) {
49
49
if (-not (Test-Path - Path $DailyDotnetRoot )) {
50
50
Write-Host " Downloading daily SDK to: $DailyDotnetRoot "
51
51
New-Item - ItemType Directory - Path $DailyDotnetRoot
52
- Invoke-WebRequest - Uri https:// dot.net / v1/ dotnet- install.ps1 - OutFile " $DailyDotnetRoot \dotnet-install.ps1"
52
+ Invoke-WebRequest - Uri https:// builds.dotnet.microsoft.com / dotnet / scripts / v1/ dotnet- install.ps1 - OutFile " $DailyDotnetRoot \dotnet-install.ps1"
53
53
& " $DailyDotnetRoot \dotnet-install.ps1" - NoPath - Channel $Version - Quality daily - InstallDir $DailyDotnetRoot
54
54
} else {
55
55
Write-Host " Daily SDK found in $DailyDotnetRoot "
Original file line number Diff line number Diff line change 48
48
if [[ ! -d $daily_dotnet_root ]]; then
49
49
echo " Downloading daily SDK to $daily_dotnet_root "
50
50
mkdir $daily_dotnet_root
51
- wget https://dot.net /v1/dotnet-install.sh -O $daily_dotnet_root /dotnet-install.sh
51
+ wget https://builds.dotnet.microsoft.com/dotnet/scripts /v1/dotnet-install.sh -O $daily_dotnet_root /dotnet-install.sh
52
52
bash $daily_dotnet_root /dotnet-install.sh --no-path --channel $version --quality daily --install-dir $daily_dotnet_root
53
53
else
54
54
echo " Daily SDK found in $daily_dotnet_root "
Original file line number Diff line number Diff line change 79
79
<RemoveDir Directories =" $(_SdkWithNoWorkloadPath)" />
80
80
<MakeDir Directories =" $(_SdkWithNoWorkloadPath)" />
81
81
82
- <DownloadFile SourceUrl =" https://dot.net /v1/$(_DotNetInstallScriptName)"
82
+ <DownloadFile SourceUrl =" https://builds.dotnet.microsoft.com/dotnet/scripts /v1/$(_DotNetInstallScriptName)"
83
83
DestinationFolder =" $(ArtifactsObjDir)"
84
84
Retries =" 3"
85
85
Condition =" !Exists($(_DotNetInstallScriptPath))" />
You can’t perform that action at this time.
0 commit comments