Skip to content
代码片段 群组 项目
未验证 提交 bffb3ca4 编辑于 作者: Doug Bunting's avatar Doug Bunting 提交者: GitHub
浏览文件

[release/2.1] Include transitive refs in meta-package .nuspec files (#30639)

* Correct and streamline internal builds
- correct manual internal builds
    - need to explicitly set `$(BuildNumber)` property in all build steps
    - rename `$(BuildScriptArgs)` to avoid circular reference
- skip tests by default in internal non-PR builds

nits:
- include new `$(BuildNumberArg)` in `$(SharedFxArgs)`
- run all test jobs in internal pull requests

* Always skip tests in SharedFx and later jobs
- however test\SharedFx.UnitTests\SharedFx.UnitTests.csproj always runs as part of `BuildSharedFx` target

* Include transitive refs in meta-package .nuspec files
- #30279
- ensure dependencies are up-to-date even when PatchConfig.props is empty
- change only CoreFx and core-setup dependencies
- also change transitive references that weren't mentioned before

* Bump a few patch versions
上级 b9baf8cf
No related branches found
No related tags found
无相关合并请求
...@@ -20,16 +20,17 @@ variables: ...@@ -20,16 +20,17 @@ variables:
- name: TeamName - name: TeamName
value: AspNetCore value: AspNetCore
- ${{ if eq(variables['System.TeamProject'], 'public') }}: - ${{ if eq(variables['System.TeamProject'], 'public') }}:
- name: BuildScriptArgs - name: BuildNumberArg
value: '' value: ''
- ${{ if ne(variables['System.TeamProject'], 'public') }}: - ${{ if ne(variables['System.TeamProject'], 'public') }}:
- name: BuildScriptArgs - name: BuildNumberArg
value: '/p:BuildNumber=$(Build.BuildId)' value: '/p:BuildNumber=$(Build.BuildId)'
- name: SharedFxArgs - name: SharedFxArgs
value: '/t:Prepare value: '/t:Prepare
/t:Restore /t:Restore
/t:GeneratePropsFiles /t:GeneratePropsFiles
/t:BuildSharedFx' /t:BuildSharedFx
$(BuildNumberArg)'
jobs: jobs:
- template: jobs/default-build.yml - template: jobs/default-build.yml
...@@ -37,22 +38,29 @@ jobs: ...@@ -37,22 +38,29 @@ jobs:
jobName: Windows_Build jobName: Windows_Build
jobDisplayName: "Build and test: Windows" jobDisplayName: "Build and test: Windows"
agentOs: Windows agentOs: Windows
buildArgs: $(BuildNumberArg)
codeSign: true codeSign: true
beforeBuild: beforeBuild:
- powershell: "& ./src/Servers/IIS/tools/UpdateIISExpressCertificate.ps1" - powershell: "& ./src/Servers/IIS/tools/UpdateIISExpressCertificate.ps1"
displayName: Setup IISExpress test certificates displayName: Setup IISExpress test certificates
# Unix test jobs only run on public CI builds # Skip tests by default in internal non-PR builds.
- ${{ if eq(variables['System.TeamProject'], 'public') }}: ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:
variables:
PB_SKIPTESTS: ${{ coalesce(variables.PB_SKIPTESTS, 'true') }}
# Unix test jobs only run on public CI builds and PRs
- ${{ if or(eq(variables['System.TeamProject'], 'public'), in(variables['Build.Reason'], 'PullRequest')) }}:
- template: jobs/default-build.yml - template: jobs/default-build.yml
parameters: parameters:
jobName: MacOs_Build jobName: MacOs_Build
jobDisplayName: "Build and test : MacOS" jobDisplayName: "Build and test : MacOS"
agentOs: MacOS agentOs: MacOS
buildArgs: $(BuildNumberArg)
- template: jobs/default-build.yml - template: jobs/default-build.yml
parameters: parameters:
jobName: Linux_Build jobName: Linux_Build
jobDisplayName: "Build and test : Linux" jobDisplayName: "Build and test : Linux"
agentOs: Linux agentOs: Linux
buildArgs: $(BuildNumberArg)
- ${{ if eq(variables['System.TeamProject'], 'internal') }}: - ${{ if eq(variables['System.TeamProject'], 'internal') }}:
- job: Windows_SharedFx - job: Windows_SharedFx
...@@ -67,6 +75,7 @@ jobs: ...@@ -67,6 +75,7 @@ jobs:
variables: variables:
_SignType: real _SignType: real
JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk
PB_SKIPTESTS: 'true'
steps: steps:
- checkout: self - checkout: self
clean: true clean: true
...@@ -102,7 +111,6 @@ jobs: ...@@ -102,7 +111,6 @@ jobs:
- script: .\build.cmd - script: .\build.cmd
-ci -ci
/p:SignType=$(_SignType) /p:SignType=$(_SignType)
$(BuildScriptArgs)
$(SharedFxArgs) $(SharedFxArgs)
/p:SharedFxRID=win-x64 /p:SharedFxRID=win-x64
/bl:artifacts/logs/SharedFx-win-x64.binlog /bl:artifacts/logs/SharedFx-win-x64.binlog
...@@ -118,7 +126,6 @@ jobs: ...@@ -118,7 +126,6 @@ jobs:
- script: .\build.cmd - script: .\build.cmd
-ci -ci
/p:SignType=$(_SignType) /p:SignType=$(_SignType)
$(BuildScriptArgs)
$(SharedFxArgs) $(SharedFxArgs)
/p:SharedFxRID=win-x86 /p:SharedFxRID=win-x86
/bl:artifacts/logs/SharedFx-win-x86.binlog /bl:artifacts/logs/SharedFx-win-x86.binlog
...@@ -134,7 +141,7 @@ jobs: ...@@ -134,7 +141,7 @@ jobs:
- script: .\build.cmd - script: .\build.cmd
-ci -ci
/p:SignType=$(_SignType) /p:SignType=$(_SignType)
$(BuildScriptArgs) $(BuildNumberArg)
/p:SkipArtifactInfoTargets=true /p:SkipArtifactInfoTargets=true
/p:DisableSignCheck=true /p:DisableSignCheck=true
/t:DoCodeSigning /t:DoCodeSigning
...@@ -178,6 +185,8 @@ jobs: ...@@ -178,6 +185,8 @@ jobs:
clean: all clean: all
pool: pool:
vmImage: macOS-10.14 vmImage: macOS-10.14
variables:
PB_SKIPTESTS: 'true'
steps: steps:
- checkout: self - checkout: self
clean: true clean: true
...@@ -198,7 +207,6 @@ jobs: ...@@ -198,7 +207,6 @@ jobs:
targetFolder: $(Build.SourcesDirectory)/.deps/ targetFolder: $(Build.SourcesDirectory)/.deps/
- script: ./$(BuildDirectory)/build.sh - script: ./$(BuildDirectory)/build.sh
-ci -ci
$(BuildScriptArgs)
$(SharedFxArgs) $(SharedFxArgs)
/p:SharedFxRID=osx-x64 /p:SharedFxRID=osx-x64
/bl:artifacts/logs/SharedFx-osx-x64.binlog /bl:artifacts/logs/SharedFx-osx-x64.binlog
...@@ -226,6 +234,8 @@ jobs: ...@@ -226,6 +234,8 @@ jobs:
clean: all clean: all
pool: pool:
vmImage: ubuntu-16.04 vmImage: ubuntu-16.04
variables:
PB_SKIPTESTS: 'true'
steps: steps:
- checkout: self - checkout: self
clean: true clean: true
...@@ -246,7 +256,6 @@ jobs: ...@@ -246,7 +256,6 @@ jobs:
targetFolder: $(Build.SourcesDirectory)/.deps/ targetFolder: $(Build.SourcesDirectory)/.deps/
- script: ./$(BuildDirectory)/build.sh - script: ./$(BuildDirectory)/build.sh
-ci -ci
$(BuildScriptArgs)
$(SharedFxArgs) $(SharedFxArgs)
/p:SharedFXRid=linux-x64 /p:SharedFXRid=linux-x64
/bl:artifacts/logs/SharedFx-linux-x64.binlog /bl:artifacts/logs/SharedFx-linux-x64.binlog
...@@ -258,7 +267,6 @@ jobs: ...@@ -258,7 +267,6 @@ jobs:
displayName: Build linux-x64 SharedFX displayName: Build linux-x64 SharedFX
- script: ./$(BuildDirectory)/build.sh - script: ./$(BuildDirectory)/build.sh
-ci -ci
$(BuildScriptArgs)
$(SharedFxArgs) $(SharedFxArgs)
/p:SharedFXRid=linux-arm /p:SharedFXRid=linux-arm
/p:IsLinuxArmSupported=true /p:IsLinuxArmSupported=true
...@@ -287,6 +295,8 @@ jobs: ...@@ -287,6 +295,8 @@ jobs:
clean: all clean: all
pool: pool:
vmImage: ubuntu-16.04 vmImage: ubuntu-16.04
variables:
PB_SKIPTESTS: 'true'
steps: steps:
- checkout: self - checkout: self
clean: true clean: true
...@@ -308,7 +318,7 @@ jobs: ...@@ -308,7 +318,7 @@ jobs:
- script: ./$(BuildDirectory)/dockerbuild.sh - script: ./$(BuildDirectory)/dockerbuild.sh
alpine alpine
-ci -ci
$(BuildScriptArgs) $(BuildNumberArg)
/t:Prepare /t:Prepare
/t:GeneratePropsFiles /t:GeneratePropsFiles
/t:BuildSharedFx /t:BuildSharedFx
...@@ -344,6 +354,7 @@ jobs: ...@@ -344,6 +354,7 @@ jobs:
variables: variables:
_SignType: real _SignType: real
JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk
PB_SKIPTESTS: 'true'
steps: steps:
- checkout: self - checkout: self
clean: true clean: true
...@@ -421,6 +432,7 @@ jobs: ...@@ -421,6 +432,7 @@ jobs:
variables: variables:
_SignType: real _SignType: real
JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk
PB_SKIPTESTS: 'true'
steps: steps:
- checkout: self - checkout: self
clean: true clean: true
...@@ -443,7 +455,7 @@ jobs: ...@@ -443,7 +455,7 @@ jobs:
targetFolder: $(Build.SourcesDirectory)/.deps/Signed/ targetFolder: $(Build.SourcesDirectory)/.deps/Signed/
- script: .\build.cmd - script: .\build.cmd
-ci -ci
$(BuildScriptArgs) $(BuildNumberArg)
/p:SignType=$(_SignType) /p:SignType=$(_SignType)
/t:BuildFallbackArchive /t:BuildFallbackArchive
/bl:artifacts/logs/PackageArchive.binlog /bl:artifacts/logs/PackageArchive.binlog
...@@ -468,7 +480,7 @@ jobs: ...@@ -468,7 +480,7 @@ jobs:
- job: SharedFX_Installers - job: SharedFX_Installers
displayName: Build SharedFX Installers displayName: Build SharedFX Installers
dependsOn: dependsOn:
- Linux_SharedFx - Linux_SharedFx
- Linux_Musl_SharedFx - Linux_Musl_SharedFx
- MacOs_SharedFx - MacOs_SharedFx
...@@ -478,6 +490,8 @@ jobs: ...@@ -478,6 +490,8 @@ jobs:
clean: all clean: all
pool: pool:
vmImage: ubuntu-16.04 vmImage: ubuntu-16.04
variables:
PB_SKIPTESTS: 'true'
steps: steps:
- checkout: self - checkout: self
clean: true clean: true
...@@ -531,7 +545,7 @@ jobs: ...@@ -531,7 +545,7 @@ jobs:
targetFolder: $(Build.SourcesDirectory)/.deps/Signed/ targetFolder: $(Build.SourcesDirectory)/.deps/Signed/
- script: ./$(BuildDirectory)/build.sh - script: ./$(BuildDirectory)/build.sh
-ci -ci
$(BuildScriptArgs) $(BuildNumberArg)
/t:BuildInstallers /t:BuildInstallers
/bl:artifacts/logs/SharedFx-Installers.binlog /bl:artifacts/logs/SharedFx-Installers.binlog
env: env:
...@@ -554,7 +568,7 @@ jobs: ...@@ -554,7 +568,7 @@ jobs:
- job: Publish - job: Publish
displayName: Publish displayName: Publish
dependsOn: dependsOn:
- Windows_Installers - Windows_Installers
- SharedFX_Installers - SharedFX_Installers
- Package_Archive - Package_Archive
...@@ -567,6 +581,7 @@ jobs: ...@@ -567,6 +581,7 @@ jobs:
variables: variables:
_SignType: real _SignType: real
JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk JAVA_HOME: $(Agent.BuildDirectory)\.tools\jdk
PB_SKIPTESTS: 'true'
steps: steps:
- checkout: self - checkout: self
clean: true clean: true
...@@ -703,7 +718,7 @@ jobs: ...@@ -703,7 +718,7 @@ jobs:
contents: korebuild.json contents: korebuild.json
- script: .\build.cmd - script: .\build.cmd
-ci -ci
$(BuildScriptArgs) $(BuildNumberArg)
/t:Publish /t:Publish
/p:BuildBranch=$(Build.SourceBranchName) /p:BuildBranch=$(Build.SourceBranchName)
/bl:artifacts/logs/Publish.binlog /bl:artifacts/logs/Publish.binlog
......
...@@ -90,10 +90,10 @@ ...@@ -90,10 +90,10 @@
<MicrosoftExtensionsBuffersTestingSourcesPackageVersion>2.1.1</MicrosoftExtensionsBuffersTestingSourcesPackageVersion> <MicrosoftExtensionsBuffersTestingSourcesPackageVersion>2.1.1</MicrosoftExtensionsBuffersTestingSourcesPackageVersion>
<MicrosoftAspNetCoreHostingWebHostBuilderFactorySourcesPackageVersion>2.1.1</MicrosoftAspNetCoreHostingWebHostBuilderFactorySourcesPackageVersion> <MicrosoftAspNetCoreHostingWebHostBuilderFactorySourcesPackageVersion>2.1.1</MicrosoftAspNetCoreHostingWebHostBuilderFactorySourcesPackageVersion>
<MicrosoftAspNetCoreServerIntegrationTestingPackageVersion>0.5.1</MicrosoftAspNetCoreServerIntegrationTestingPackageVersion> <MicrosoftAspNetCoreServerIntegrationTestingPackageVersion>0.5.1</MicrosoftAspNetCoreServerIntegrationTestingPackageVersion>
<MicrosoftEntityFrameworkCoreInMemoryPackageVersion>2.1.4</MicrosoftEntityFrameworkCoreInMemoryPackageVersion> <MicrosoftEntityFrameworkCoreInMemoryPackageVersion>2.1.14</MicrosoftEntityFrameworkCoreInMemoryPackageVersion>
<MicrosoftEntityFrameworkCoreSqlitePackageVersion>2.1.4</MicrosoftEntityFrameworkCoreSqlitePackageVersion> <MicrosoftEntityFrameworkCoreSqlitePackageVersion>2.1.14</MicrosoftEntityFrameworkCoreSqlitePackageVersion>
<MicrosoftEntityFrameworkCoreSqlServerPackageVersion>2.1.4</MicrosoftEntityFrameworkCoreSqlServerPackageVersion> <MicrosoftEntityFrameworkCoreSqlServerPackageVersion>2.1.14</MicrosoftEntityFrameworkCoreSqlServerPackageVersion>
<MicrosoftEntityFrameworkCoreToolsPackageVersion>2.1.4</MicrosoftEntityFrameworkCoreToolsPackageVersion> <MicrosoftEntityFrameworkCoreToolsPackageVersion>2.1.14</MicrosoftEntityFrameworkCoreToolsPackageVersion>
<!-- External and partner dependencies --> <!-- External and partner dependencies -->
<AngleSharpPackageVersion>0.9.9</AngleSharpPackageVersion> <AngleSharpPackageVersion>0.9.9</AngleSharpPackageVersion>
...@@ -132,11 +132,11 @@ ...@@ -132,11 +132,11 @@
<MicrosoftIdentityModelClientsActiveDirectoryPackageVersion>3.14.2</MicrosoftIdentityModelClientsActiveDirectoryPackageVersion> <MicrosoftIdentityModelClientsActiveDirectoryPackageVersion>3.14.2</MicrosoftIdentityModelClientsActiveDirectoryPackageVersion>
<MicrosoftIdentityModelProtocolsOpenIdConnectPackageVersion>5.2.0</MicrosoftIdentityModelProtocolsOpenIdConnectPackageVersion> <MicrosoftIdentityModelProtocolsOpenIdConnectPackageVersion>5.2.0</MicrosoftIdentityModelProtocolsOpenIdConnectPackageVersion>
<MicrosoftIdentityModelProtocolsWsFederationPackageVersion>5.2.0</MicrosoftIdentityModelProtocolsWsFederationPackageVersion> <MicrosoftIdentityModelProtocolsWsFederationPackageVersion>5.2.0</MicrosoftIdentityModelProtocolsWsFederationPackageVersion>
<MicrosoftNETCoreApp10PackageVersion>1.0.15</MicrosoftNETCoreApp10PackageVersion> <MicrosoftNETCoreApp10PackageVersion>1.0.16</MicrosoftNETCoreApp10PackageVersion>
<MicrosoftNETCoreApp11PackageVersion>1.1.12</MicrosoftNETCoreApp11PackageVersion> <MicrosoftNETCoreApp11PackageVersion>1.1.13</MicrosoftNETCoreApp11PackageVersion>
<MicrosoftNETCoreApp20PackageVersion>2.0.9</MicrosoftNETCoreApp20PackageVersion> <MicrosoftNETCoreApp20PackageVersion>2.0.9</MicrosoftNETCoreApp20PackageVersion>
<MicrosoftNETCoreWindowsApiSetsPackageVersion>1.0.1</MicrosoftNETCoreWindowsApiSetsPackageVersion> <MicrosoftNETCoreWindowsApiSetsPackageVersion>1.0.1</MicrosoftNETCoreWindowsApiSetsPackageVersion>
<MicrosoftNETTestSdkPackageVersion>15.9.0</MicrosoftNETTestSdkPackageVersion> <MicrosoftNETTestSdkPackageVersion>15.9.2</MicrosoftNETTestSdkPackageVersion>
<MicrosoftOwinSecurityCookiesPackageVersion>3.0.1</MicrosoftOwinSecurityCookiesPackageVersion> <MicrosoftOwinSecurityCookiesPackageVersion>3.0.1</MicrosoftOwinSecurityCookiesPackageVersion>
<MicrosoftOwinSecurityPackageVersion>3.0.1</MicrosoftOwinSecurityPackageVersion> <MicrosoftOwinSecurityPackageVersion>3.0.1</MicrosoftOwinSecurityPackageVersion>
<MicrosoftOwinTestingPackageVersion>3.0.1</MicrosoftOwinTestingPackageVersion> <MicrosoftOwinTestingPackageVersion>3.0.1</MicrosoftOwinTestingPackageVersion>
...@@ -191,7 +191,7 @@ ...@@ -191,7 +191,7 @@
<SystemIOPipelinesPackageVersion>4.5.4</SystemIOPipelinesPackageVersion> <SystemIOPipelinesPackageVersion>4.5.4</SystemIOPipelinesPackageVersion>
<SystemMemoryPackageVersion>4.5.4</SystemMemoryPackageVersion> <SystemMemoryPackageVersion>4.5.4</SystemMemoryPackageVersion>
<SystemNetHttpPackageVersion>4.3.4</SystemNetHttpPackageVersion> <SystemNetHttpPackageVersion>4.3.4</SystemNetHttpPackageVersion>
<SystemNetHttpWinHttpHandlerPackageVersion>4.5.3</SystemNetHttpWinHttpHandlerPackageVersion> <SystemNetHttpWinHttpHandlerPackageVersion>4.5.4</SystemNetHttpWinHttpHandlerPackageVersion>
<SystemNumericsVectorsPackageVersion>4.5.0</SystemNumericsVectorsPackageVersion> <SystemNumericsVectorsPackageVersion>4.5.0</SystemNumericsVectorsPackageVersion>
<SystemReactiveLinqPackageVersion>3.1.1</SystemReactiveLinqPackageVersion> <SystemReactiveLinqPackageVersion>3.1.1</SystemReactiveLinqPackageVersion>
<SystemReflectionEmitPackageVersion>4.3.0</SystemReflectionEmitPackageVersion> <SystemReflectionEmitPackageVersion>4.3.0</SystemReflectionEmitPackageVersion>
...@@ -230,5 +230,10 @@ ...@@ -230,5 +230,10 @@
<XunitExtensibilityExecutionPackageVersion>2.3.1</XunitExtensibilityExecutionPackageVersion> <XunitExtensibilityExecutionPackageVersion>2.3.1</XunitExtensibilityExecutionPackageVersion>
<XunitPackageVersion>2.4.0</XunitPackageVersion> <XunitPackageVersion>2.4.0</XunitPackageVersion>
<XunitRunnerVisualStudioPackageVersion>2.4.0</XunitRunnerVisualStudioPackageVersion> <XunitRunnerVisualStudioPackageVersion>2.4.0</XunitRunnerVisualStudioPackageVersion>
<!-- Dependencies listed only to include otherwise-transitive references in Microsoft.AspNetCore.App.nuspec. -->
<MicrosoftDotNetPlatformAbstractionsPackageVersion>2.1.0</MicrosoftDotNetPlatformAbstractionsPackageVersion>
<SystemSecurityCryptographyPkcsPackageVersion>4.5.2</SystemSecurityCryptographyPkcsPackageVersion>
<SystemTextEncodingCodePagesPackageVersion>4.5.1</SystemTextEncodingCodePagesPackageVersion>
</PropertyGroup> </PropertyGroup>
</Project> </Project>
此差异已折叠。
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册