Skip to content

Commit f137da8

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20191107.20
- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.19557.20
1 parent 95e0274 commit f137da8

11 files changed

+331
-21
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<ProductDependencies>
44
</ProductDependencies>
55
<ToolsetDependencies>
6-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.19556.10">
6+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.19557.20">
77
<Uri>https://github.com/dotnet/arcade</Uri>
8-
<Sha>4dcc0a7242ea70c7c18dc093c96222d1585c0c91</Sha>
8+
<Sha>b62f1617f2c453497fd55697c04dd8021a38dc17</Sha>
99
</Dependency>
1010
</ToolsetDependencies>
1111
</Dependencies>
Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
parameters:
2+
artifactsPublishingAdditionalParameters: ''
3+
dependsOn:
4+
- Validate
5+
publishInstallersAndChecksums: false
6+
symbolPublishingAdditionalParameters: ''
7+
8+
stages:
9+
- stage: General_Testing_Publish
10+
dependsOn: ${{ parameters.dependsOn }}
11+
variables:
12+
- template: ../common-variables.yml
13+
displayName: General Testing Publishing
14+
jobs:
15+
- template: ../setup-maestro-vars.yml
16+
17+
- job:
18+
displayName: Symbol Publishing
19+
dependsOn: setupMaestroVars
20+
condition: contains(dependencies.setupMaestroVars.outputs['setReleaseVars.InitialChannels'], format('[{0}]', variables.GeneralTesting_Channel_Id))
21+
variables:
22+
- group: DotNet-Symbol-Server-Pats
23+
pool:
24+
vmImage: 'windows-2019'
25+
steps:
26+
- task: DownloadBuildArtifacts@0
27+
displayName: Download Blob Artifacts
28+
inputs:
29+
artifactName: 'BlobArtifacts'
30+
continueOnError: true
31+
32+
- task: DownloadBuildArtifacts@0
33+
displayName: Download PDB Artifacts
34+
inputs:
35+
artifactName: 'PDBArtifacts'
36+
continueOnError: true
37+
38+
# This is necessary whenever we want to publish/restore to an AzDO private feed
39+
# Since sdk-task.ps1 tries to restore packages we need to do this authentication here
40+
# otherwise it'll complain about accessing a private feed.
41+
- task: NuGetAuthenticate@0
42+
displayName: 'Authenticate to AzDO Feeds'
43+
44+
- task: PowerShell@2
45+
displayName: Enable cross-org publishing
46+
inputs:
47+
filePath: eng\common\enable-cross-org-publishing.ps1
48+
arguments: -token $(dn-bot-dnceng-artifact-feeds-rw)
49+
50+
- task: PowerShell@2
51+
displayName: Publish
52+
inputs:
53+
filePath: eng\common\sdk-task.ps1
54+
arguments: -task PublishToSymbolServers -restore -msbuildEngine dotnet
55+
/p:DotNetSymbolServerTokenMsdl=$(microsoft-symbol-server-pat)
56+
/p:DotNetSymbolServerTokenSymWeb=$(symweb-symbol-server-pat)
57+
/p:PDBArtifactsDirectory='$(Build.ArtifactStagingDirectory)/PDBArtifacts/'
58+
/p:BlobBasePath='$(Build.ArtifactStagingDirectory)/BlobArtifacts/'
59+
/p:SymbolPublishingExclusionsFile='$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt'
60+
/p:Configuration=Release
61+
${{ parameters.symbolPublishingAdditionalParameters }}
62+
63+
- job: publish_assets
64+
displayName: Publish Assets
65+
dependsOn: setupMaestroVars
66+
variables:
67+
- name: BARBuildId
68+
value: $[ dependencies.setupMaestroVars.outputs['setReleaseVars.BARBuildId'] ]
69+
- name: IsStableBuild
70+
value: $[ dependencies.setupMaestroVars.outputs['setReleaseVars.IsStableBuild'] ]
71+
condition: contains(dependencies.setupMaestroVars.outputs['setReleaseVars.InitialChannels'], format('[{0}]', variables.GeneralTesting_Channel_Id))
72+
pool:
73+
vmImage: 'windows-2019'
74+
steps:
75+
- task: DownloadBuildArtifacts@0
76+
displayName: Download Package Artifacts
77+
inputs:
78+
buildType: current
79+
artifactName: PackageArtifacts
80+
continueOnError: true
81+
82+
- task: DownloadBuildArtifacts@0
83+
displayName: Download Blob Artifacts
84+
inputs:
85+
buildType: current
86+
artifactName: BlobArtifacts
87+
continueOnError: true
88+
89+
- task: DownloadBuildArtifacts@0
90+
displayName: Download Asset Manifests
91+
inputs:
92+
buildType: current
93+
artifactName: AssetManifests
94+
95+
- task: NuGetToolInstaller@1
96+
displayName: 'Install NuGet.exe'
97+
98+
# This is necessary whenever we want to publish/restore to an AzDO private feed
99+
- task: NuGetAuthenticate@0
100+
displayName: 'Authenticate to AzDO Feeds'
101+
102+
- task: PowerShell@2
103+
displayName: Enable cross-org publishing
104+
inputs:
105+
filePath: eng\common\enable-cross-org-publishing.ps1
106+
arguments: -token $(dn-bot-dnceng-artifact-feeds-rw)
107+
108+
- task: PowerShell@2
109+
displayName: Publish Assets
110+
inputs:
111+
filePath: eng\common\sdk-task.ps1
112+
arguments: -task PublishArtifactsInManifest -restore -msbuildEngine dotnet
113+
/p:ArtifactsCategory=$(_DotNetArtifactsCategory)
114+
/p:IsStableBuild=$(IsStableBuild)
115+
/p:IsInternalBuild=$(IsInternalBuild)
116+
/p:RepositoryName=$(Build.Repository.Name)
117+
/p:CommitSha=$(Build.SourceVersion)
118+
/p:NugetPath=$(NuGetExeToolPath)
119+
/p:AzdoTargetFeedPAT='$(dn-bot-dnceng-universal-packages-rw)'
120+
/p:AzureStorageTargetFeedPAT='$(dotnetfeed-storage-access-key-1)'
121+
/p:BARBuildId=$(BARBuildId)
122+
/p:MaestroApiEndpoint='$(MaestroApiEndPoint)'
123+
/p:BuildAssetRegistryToken='$(MaestroApiAccessToken)'
124+
/p:ManifestsBasePath='$(Build.ArtifactStagingDirectory)/AssetManifests/'
125+
/p:BlobBasePath='$(Build.ArtifactStagingDirectory)/BlobArtifacts/'
126+
/p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts/'
127+
/p:Configuration=Release
128+
/p:PublishInstallersAndChecksums=${{ parameters.publishInstallersAndChecksums }}
129+
/p:InstallersTargetStaticFeed=$(InstallersBlobFeedUrl)
130+
/p:InstallersAzureAccountKey=$(dotnetcli-storage-key)
131+
/p:ChecksumsTargetStaticFeed=$(ChecksumsBlobFeedUrl)
132+
/p:ChecksumsAzureAccountKey=$(dotnetclichecksums-storage-key)
133+
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/general-testing/nuget/v3/index.json'
134+
/p:AzureDevOpsStaticShippingFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
135+
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/general-testing/nuget/v3/index.json'
136+
/p:AzureDevOpsStaticTransportFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
137+
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/general-testing-symbols/nuget/v3/index.json'
138+
/p:AzureDevOpsStaticSymbolsFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
139+
${{ parameters.artifactsPublishingAdditionalParameters }}
140+
141+
- template: ../../steps/promote-build.yml
142+
parameters:
143+
ChannelId: ${{ variables.GeneralTesting_Channel_Id }}

eng/common/templates/post-build/channels/netcore-3-tools-validation.yml renamed to eng/common/templates/post-build/channels/netcore-3-eng-validation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ stages:
8383
/p:InstallersAzureAccountKey=$(dotnetcli-storage-key)
8484
/p:ChecksumsTargetStaticFeed=$(ChecksumsBlobFeedUrl)
8585
/p:ChecksumsAzureAccountKey=$(dotnetclichecksums-storage-key)
86-
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json'
86+
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json'
8787
/p:AzureDevOpsStaticShippingFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
88-
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json'
88+
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json'
8989
/p:AzureDevOpsStaticTransportFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
90-
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools-symbols/nuget/v3/index.json'
90+
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng-symbols/nuget/v3/index.json'
9191
/p:AzureDevOpsStaticSymbolsFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
9292
${{ parameters.artifactsPublishingAdditionalParameters }}
9393

eng/common/templates/post-build/channels/netcore-3-tools.yml renamed to eng/common/templates/post-build/channels/netcore-3-eng.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ stages:
130130
/p:InstallersAzureAccountKey=$(dotnetcli-storage-key)
131131
/p:ChecksumsTargetStaticFeed=$(ChecksumsBlobFeedUrl)
132132
/p:ChecksumsAzureAccountKey=$(dotnetclichecksums-storage-key)
133-
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json'
133+
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json'
134134
/p:AzureDevOpsStaticShippingFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
135-
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json'
135+
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json'
136136
/p:AzureDevOpsStaticTransportFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
137-
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools-symbols/nuget/v3/index.json'
137+
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng-symbols/nuget/v3/index.json'
138138
/p:AzureDevOpsStaticSymbolsFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
139139
${{ parameters.artifactsPublishingAdditionalParameters }}
140140

Lines changed: 143 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,143 @@
1+
parameters:
2+
artifactsPublishingAdditionalParameters: ''
3+
dependsOn:
4+
- Validate
5+
publishInstallersAndChecksums: false
6+
symbolPublishingAdditionalParameters: ''
7+
8+
stages:
9+
- stage: NetCore_Blazor31_Features_Publish
10+
dependsOn: ${{ parameters.dependsOn }}
11+
variables:
12+
- template: ../common-variables.yml
13+
displayName: .NET Core 3.1 Blazor Features Publishing
14+
jobs:
15+
- template: ../setup-maestro-vars.yml
16+
17+
- job:
18+
displayName: Symbol Publishing
19+
dependsOn: setupMaestroVars
20+
condition: contains(dependencies.setupMaestroVars.outputs['setReleaseVars.InitialChannels'], format('[{0}]', variables.NetCore_31_Blazor_Features))
21+
variables:
22+
- group: DotNet-Symbol-Server-Pats
23+
pool:
24+
vmImage: 'windows-2019'
25+
steps:
26+
- task: DownloadBuildArtifacts@0
27+
displayName: Download Blob Artifacts
28+
inputs:
29+
artifactName: 'BlobArtifacts'
30+
continueOnError: true
31+
32+
- task: DownloadBuildArtifacts@0
33+
displayName: Download PDB Artifacts
34+
inputs:
35+
artifactName: 'PDBArtifacts'
36+
continueOnError: true
37+
38+
# This is necessary whenever we want to publish/restore to an AzDO private feed
39+
# Since sdk-task.ps1 tries to restore packages we need to do this authentication here
40+
# otherwise it'll complain about accessing a private feed.
41+
- task: NuGetAuthenticate@0
42+
displayName: 'Authenticate to AzDO Feeds'
43+
44+
- task: PowerShell@2
45+
displayName: Enable cross-org publishing
46+
inputs:
47+
filePath: eng\common\enable-cross-org-publishing.ps1
48+
arguments: -token $(dn-bot-dnceng-artifact-feeds-rw)
49+
50+
- task: PowerShell@2
51+
displayName: Publish
52+
inputs:
53+
filePath: eng\common\sdk-task.ps1
54+
arguments: -task PublishToSymbolServers -restore -msbuildEngine dotnet
55+
/p:DotNetSymbolServerTokenMsdl=$(microsoft-symbol-server-pat)
56+
/p:DotNetSymbolServerTokenSymWeb=$(symweb-symbol-server-pat)
57+
/p:PDBArtifactsDirectory='$(Build.ArtifactStagingDirectory)/PDBArtifacts/'
58+
/p:BlobBasePath='$(Build.ArtifactStagingDirectory)/BlobArtifacts/'
59+
/p:SymbolPublishingExclusionsFile='$(Build.SourcesDirectory)/eng/SymbolPublishingExclusionsFile.txt'
60+
/p:Configuration=Release
61+
${{ parameters.symbolPublishingAdditionalParameters }}
62+
63+
- job: publish_assets
64+
displayName: Publish Assets
65+
dependsOn: setupMaestroVars
66+
variables:
67+
- name: BARBuildId
68+
value: $[ dependencies.setupMaestroVars.outputs['setReleaseVars.BARBuildId'] ]
69+
- name: IsStableBuild
70+
value: $[ dependencies.setupMaestroVars.outputs['setReleaseVars.IsStableBuild'] ]
71+
condition: contains(dependencies.setupMaestroVars.outputs['setReleaseVars.InitialChannels'], format('[{0}]', variables.NetCore_31_Blazor_Features))
72+
pool:
73+
vmImage: 'windows-2019'
74+
steps:
75+
- task: DownloadBuildArtifacts@0
76+
displayName: Download Package Artifacts
77+
inputs:
78+
buildType: current
79+
artifactName: PackageArtifacts
80+
continueOnError: true
81+
82+
- task: DownloadBuildArtifacts@0
83+
displayName: Download Blob Artifacts
84+
inputs:
85+
buildType: current
86+
artifactName: BlobArtifacts
87+
continueOnError: true
88+
89+
- task: DownloadBuildArtifacts@0
90+
displayName: Download Asset Manifests
91+
inputs:
92+
buildType: current
93+
artifactName: AssetManifests
94+
95+
- task: NuGetToolInstaller@1
96+
displayName: 'Install NuGet.exe'
97+
98+
# This is necessary whenever we want to publish/restore to an AzDO private feed
99+
- task: NuGetAuthenticate@0
100+
displayName: 'Authenticate to AzDO Feeds'
101+
102+
- task: PowerShell@2
103+
displayName: Enable cross-org publishing
104+
inputs:
105+
filePath: eng\common\enable-cross-org-publishing.ps1
106+
arguments: -token $(dn-bot-dnceng-artifact-feeds-rw)
107+
108+
- task: PowerShell@2
109+
displayName: Publish Assets
110+
inputs:
111+
filePath: eng\common\sdk-task.ps1
112+
arguments: -task PublishArtifactsInManifest -restore -msbuildEngine dotnet
113+
/p:ArtifactsCategory=$(_DotNetArtifactsCategory)
114+
/p:IsStableBuild=$(IsStableBuild)
115+
/p:IsInternalBuild=$(IsInternalBuild)
116+
/p:RepositoryName=$(Build.Repository.Name)
117+
/p:CommitSha=$(Build.SourceVersion)
118+
/p:NugetPath=$(NuGetExeToolPath)
119+
/p:AzdoTargetFeedPAT='$(dn-bot-dnceng-universal-packages-rw)'
120+
/p:AzureStorageTargetFeedPAT='$(dotnetfeed-storage-access-key-1)'
121+
/p:BARBuildId=$(BARBuildId)
122+
/p:MaestroApiEndpoint='$(MaestroApiEndPoint)'
123+
/p:BuildAssetRegistryToken='$(MaestroApiAccessToken)'
124+
/p:ManifestsBasePath='$(Build.ArtifactStagingDirectory)/AssetManifests/'
125+
/p:BlobBasePath='$(Build.ArtifactStagingDirectory)/BlobArtifacts/'
126+
/p:PackageBasePath='$(Build.ArtifactStagingDirectory)/PackageArtifacts/'
127+
/p:Configuration=Release
128+
/p:PublishInstallersAndChecksums=${{ parameters.publishInstallersAndChecksums }}
129+
/p:InstallersTargetStaticFeed=$(InstallersBlobFeedUrl)
130+
/p:InstallersAzureAccountKey=$(dotnetcli-storage-key)
131+
/p:ChecksumsTargetStaticFeed=$(ChecksumsBlobFeedUrl)
132+
/p:ChecksumsAzureAccountKey=$(dotnetclichecksums-storage-key)
133+
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet3.1-blazor/nuget/v3/index.json'
134+
/p:AzureDevOpsStaticShippingFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
135+
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet3.1-blazor/nuget/v3/index.json'
136+
/p:AzureDevOpsStaticTransportFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
137+
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet3.1-blazor-symbols/nuget/v3/index.json'
138+
/p:AzureDevOpsStaticSymbolsFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
139+
${{ parameters.artifactsPublishingAdditionalParameters }}
140+
141+
- template: ../../steps/promote-build.yml
142+
parameters:
143+
ChannelId: ${{ variables.NetCore_31_Blazor_Features }}

eng/common/templates/post-build/channels/netcore-tools-latest.yml renamed to eng/common/templates/post-build/channels/netcore-eng-latest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ stages:
130130
/p:InstallersAzureAccountKey=$(dotnetcli-storage-key)
131131
/p:ChecksumsTargetStaticFeed=$(ChecksumsBlobFeedUrl)
132132
/p:ChecksumsAzureAccountKey=$(dotnetclichecksums-storage-key)
133-
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json'
133+
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json'
134134
/p:AzureDevOpsStaticShippingFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
135-
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json'
135+
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json'
136136
/p:AzureDevOpsStaticTransportFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
137-
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools-symbols/nuget/v3/index.json'
137+
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng-symbols/nuget/v3/index.json'
138138
/p:AzureDevOpsStaticSymbolsFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
139139
${{ parameters.artifactsPublishingAdditionalParameters }}
140140

eng/common/templates/post-build/channels/netcore-tools-validation.yml renamed to eng/common/templates/post-build/channels/netcore-eng-validation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ stages:
8585
/p:InstallersAzureAccountKey=$(dotnetcli-storage-key)
8686
/p:ChecksumsTargetStaticFeed=$(ChecksumsBlobFeedUrl)
8787
/p:ChecksumsAzureAccountKey=$(dotnetclichecksums-storage-key)
88-
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json'
88+
/p:AzureDevOpsStaticShippingFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json'
8989
/p:AzureDevOpsStaticShippingFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
90-
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json'
90+
/p:AzureDevOpsStaticTransportFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json'
9191
/p:AzureDevOpsStaticTransportFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
92-
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools-symbols/nuget/v3/index.json'
92+
/p:AzureDevOpsStaticSymbolsFeed='https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng-symbols/nuget/v3/index.json'
9393
/p:AzureDevOpsStaticSymbolsFeedKey='$(dn-bot-dnceng-artifact-feeds-rw)'
9494
${{ parameters.artifactsPublishingAdditionalParameters }}
9595

eng/common/templates/post-build/channels/netcore-internal-30.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ parameters:
22
artifactsPublishingAdditionalParameters: ''
33
dependsOn:
44
- Validate
5+
publishInstallersAndChecksums: false
56
symbolPublishingAdditionalParameters: ''
67

78
stages:

eng/common/templates/post-build/common-variables.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@ variables:
4141
- name: PublicRelease_31_Channel_Id
4242
value: 129
4343

44+
# General Testing
45+
- name: GeneralTesting_Channel_Id
46+
value: 529
47+
48+
# .NET Core 3.1 Blazor Features
49+
- name: NetCore_31_Blazor_Features
50+
value: 531
51+
4452
# Whether the build is internal or not
4553
- name: IsInternalBuild
4654
value: ${{ and(ne(variables['System.TeamProject'], 'public'), contains(variables['Build.SourceBranch'], 'internal')) }}

0 commit comments

Comments
 (0)