Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point to the new domains / URLs from Microsoft in dotnet-install #6574

Closed
wants to merge 1 commit into from
Closed
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
Point to the new domains / URLs from Microsoft
See: dotnet/core#9671

They are changing CDNs.
These changes have already been added in
the official install scripts.

https://github.com/dotnet/install-scripts/pull/555/files
bouwkast committed Jan 17, 2025
commit e6044ff78b376f0827161a69789a41e6a4088e09
8 changes: 4 additions & 4 deletions tracer/build/_build/bootstrap/dotnet-install.ps1
Original file line number Diff line number Diff line change
@@ -1105,8 +1105,8 @@ function Get-AkaMsLink-And-Version([string] $NormalizedChannel, [string] $Normal
function Get-Feeds-To-Use()
{
$feeds = @(
"https://dotnetcli.azureedge.net/dotnet",
"https://dotnetbuilds.azureedge.net/public"
"https://builds.dotnet.microsoft.com/dotnet",
"https://ci.dot.net/public"
)

if (-not [string]::IsNullOrEmpty($AzureFeed)) {
@@ -1115,8 +1115,8 @@ function Get-Feeds-To-Use()

if ($NoCdn) {
$feeds = @(
"https://dotnetcli.blob.core.windows.net/dotnet",
"https://dotnetbuilds.blob.core.windows.net/public"
"https://builds.dotnet.microsoft.com/dotnet",
"https://ci.dot.net/public"
)

if (-not [string]::IsNullOrEmpty($UncachedFeed)) {
8 changes: 4 additions & 4 deletions tracer/build/_build/bootstrap/dotnet-install.sh
Original file line number Diff line number Diff line change
@@ -1298,8 +1298,8 @@ get_download_link_from_aka_ms() {
get_feeds_to_use()
{
feeds=(
"https://dotnetcli.azureedge.net/dotnet"
"https://dotnetbuilds.azureedge.net/public"
"https://builds.dotnet.microsoft.com/dotnet"
"https://ci.dot.net/public"
)

if [[ -n "$azure_feed" ]]; then
@@ -1308,8 +1308,8 @@ get_feeds_to_use()

if [[ "$no_cdn" == "true" ]]; then
feeds=(
"https://dotnetcli.blob.core.windows.net/dotnet"
"https://dotnetbuilds.blob.core.windows.net/public"
"https://builds.dotnet.microsoft.com/dotnet"
"https://ci.dot.net/public"
)

if [[ -n "$uncached_feed" ]]; then