Skip to content

Commit a358a04

Browse files
authored
Migrate URLs from dotnetbuilds.blob.core.windows.net to ci.dot.net (#20707)
2 parents a94974d + 34bee0f commit a358a04

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.vsts-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ variables:
3434
value: ''
3535
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
3636
- name: _InternalRuntimeDownloadArgs
37-
value: /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
37+
value: /p:DotNetRuntimeSourceFeed=http://ci.dot.net/internal
3838
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
3939
/p:dotnetbuilds-internal-container-read-token-base64=$(dotnetbuilds-internal-container-read-token-base64)
4040
- template: /eng/common/templates/variables/pool-providers.yml

.vsts-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ variables:
2828

2929
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
3030
- name: _InternalRuntimeDownloadArgs
31-
value: /p:DotNetRuntimeSourceFeed=https://dotnetbuilds.blob.core.windows.net/internal
31+
value: /p:DotNetRuntimeSourceFeed=http://ci.dot.net/internal
3232
/p:DotNetRuntimeSourceFeedKey=$(dotnetbuilds-internal-container-read-token-base64)
3333
/p:dotnetbuilds-internal-container-read-token-base64=$(dotnetbuilds-internal-container-read-token-base64)
3434

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<!-- Restore feeds -->
3636
<PropertyGroup Label="Restore feeds">
3737
<!-- In an orchestrated build, this may be overridden to other Azure feeds. -->
38-
<DotNetAssetRootUrl Condition="'$(DotNetAssetRootUrl)'==''">https://dotnetbuilds.blob.core.windows.net/public/</DotNetAssetRootUrl>
38+
<DotNetAssetRootUrl Condition="'$(DotNetAssetRootUrl)'==''">http://ci.dot.net/public/</DotNetAssetRootUrl>
3939
<DotNetPrivateAssetRootUrl Condition="'$(DotNetPrivateAssetRootUrl)'==''">https://dotnetclimsrc.blob.core.windows.net/dotnet/</DotNetPrivateAssetRootUrl>
4040
</PropertyGroup>
4141
<PropertyGroup>

src/redist/targets/GenerateLayout.targets

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<SdkOutputDirectory>$(RedistLayoutPath)sdk\$(Version)\</SdkOutputDirectory>
3333

3434
<InternalBuild Condition="$(SYSTEM_TEAMPROJECT) == 'internal'">true</InternalBuild>
35-
<InternalBaseURL Condition="$(SYSTEM_TEAMPROJECT) == 'internal'">https://dotnetbuilds.blob.core.windows.net/internal/</InternalBaseURL>
35+
<InternalBaseURL Condition="$(SYSTEM_TEAMPROJECT) == 'internal'">http://ci.dot.net/internal/</InternalBaseURL>
3636

3737
<PublicBaseURL Condition="'$(PublicBaseURL)' == ''">https://dotnetcli.blob.core.windows.net/dotnet/</PublicBaseURL>
3838

@@ -381,10 +381,10 @@
381381
<!-- If building in product source build mode, there is no need to attempt the external URIs. These are not desired,
382382
and won't work anyway because the source build file URI doesn't use the same structure as the storage accounts.
383383
For example, the dotnetbuilds uri for 'file:///vmr/dotnet2/artifacts/obj/x64/Release/blob-feed/assets//aspnetcore_base_runtime.version'
384-
would end up 'https://dotnetbuilds.blob.core.windows.net/public//dotnet-runtime-8.0.0-rc.1.23381.3-centos.8-x64.tar.gz'. This is
384+
would end up 'http://ci.dot.net/public//dotnet-runtime-8.0.0-rc.1.23381.3-centos.8-x64.tar.gz'. This is
385385
missing the runtime version number directory. -->
386386
<ItemGroup Condition="'$(DotNetBuildFromSourceFlavor)' != 'Product'">
387-
<UrisToDownload Include="$([System.String]::Copy('%(ComponentToDownload.BaseUrl)').Replace($(PublicBaseURL), 'https://dotnetbuilds.blob.core.windows.net/public/'))/%(ComponentToDownload.DownloadFileName)"
387+
<UrisToDownload Include="$([System.String]::Copy('%(ComponentToDownload.BaseUrl)').Replace($(PublicBaseURL), 'http://ci.dot.net/public/'))/%(ComponentToDownload.DownloadFileName)"
388388
Condition="'%(ComponentToDownload.ShouldDownload)' == 'true'">
389389
<ShouldDownload>%(ComponentToDownload.ShouldDownload)</ShouldDownload>
390390
<DownloadDestination>%(ComponentToDownload.DownloadDestination)</DownloadDestination>

0 commit comments

Comments
 (0)