-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[main] Update dependencies from dotnet/arcade (#108757)
* Update dependencies from https://github.com/dotnet/arcade build 20241010.1 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitAssert , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions From Version 10.0.0-beta.24504.4 -> To Version 10.0.0-beta.24510.1 * Update dependencies from https://github.com/dotnet/arcade build 20241010.3 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitAssert , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions From Version 10.0.0-beta.24510.1 -> To Version 10.0.0-beta.24510.3 * Update dependencies from https://github.com/dotnet/arcade build 20241011.1 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitAssert , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions From Version 10.0.0-beta.24510.3 -> To Version 10.0.0-beta.24511.1 * Suppress IL3050 warnings * Upgrade SDK to 9.0.0-rc2 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Larry Ewing <lewing@microsoft.com> Co-authored-by: Michal Strehovský <MichalStrehovsky@users.noreply.github.com> Co-authored-by: Adeel Mujahid <3840695+am11@users.noreply.github.com>
- Loading branch information
1 parent
5664681
commit bf23102
Showing
19 changed files
with
161 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
parameters: | ||
# Enable cleanup tasks for MicroBuild | ||
enableMicrobuild: false | ||
# Enable cleanup tasks for MicroBuild on Mac and Linux | ||
# Will be ignored if 'enableMicrobuild' is false or 'Agent.Os' is 'Windows_NT' | ||
enableMicrobuildForMacAndLinux: false | ||
continueOnError: false | ||
|
||
steps: | ||
- ${{ if eq(parameters.enableMicrobuild, 'true') }}: | ||
- task: MicroBuildCleanup@1 | ||
displayName: Execute Microbuild cleanup tasks | ||
condition: and( | ||
always(), | ||
or( | ||
and( | ||
eq(variables['Agent.Os'], 'Windows_NT'), | ||
in(variables['_SignType'], 'real', 'test') | ||
), | ||
and( | ||
${{ eq(parameters.enableMicrobuildForMacAndLinux, true) }}, | ||
ne(variables['Agent.Os'], 'Windows_NT'), | ||
eq(variables['_SignType'], 'real') | ||
) | ||
)) | ||
continueOnError: ${{ parameters.continueOnError }} | ||
env: | ||
TeamName: $(_TeamName) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
parameters: | ||
# Enable cleanup tasks for MicroBuild | ||
enableMicrobuild: false | ||
# Enable cleanup tasks for MicroBuild on Mac and Linux | ||
# Will be ignored if 'enableMicrobuild' is false or 'Agent.Os' is 'Windows_NT' | ||
enableMicrobuildForMacAndLinux: false | ||
continueOnError: false | ||
|
||
steps: | ||
- ${{ if eq(parameters.enableMicrobuild, 'true') }}: | ||
# Remove Python downgrade with https://github.com/dotnet/arcade/issues/15151 | ||
- ${{ if and(eq(parameters.enableMicrobuildForMacAndLinux, 'true'), ne(variables['Agent.Os'], 'Windows_NT')) }}: | ||
- task: UsePythonVersion@0 | ||
displayName: 'Use Python 3.11.x' | ||
inputs: | ||
versionSpec: '3.11.x' | ||
|
||
- task: MicroBuildSigningPlugin@4 | ||
displayName: Install MicroBuild plugin | ||
inputs: | ||
signType: $(_SignType) | ||
zipSources: false | ||
feedSource: https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json | ||
${{ if and(eq(parameters.enableMicrobuildForMacAndLinux, 'true'), ne(variables['Agent.Os'], 'Windows_NT')) }}: | ||
azureSubscription: 'MicroBuild Signing Task (DevDiv)' | ||
env: | ||
TeamName: $(_TeamName) | ||
MicroBuildOutputFolderOverride: '$(Agent.TempDirectory)' | ||
SYSTEM_ACCESSTOKEN: $(System.AccessToken) | ||
continueOnError: ${{ parameters.continueOnError }} | ||
condition: and( | ||
succeeded(), | ||
or( | ||
and( | ||
eq(variables['Agent.Os'], 'Windows_NT'), | ||
in(variables['_SignType'], 'real', 'test') | ||
), | ||
and( | ||
${{ eq(parameters.enableMicrobuildForMacAndLinux, true) }}, | ||
ne(variables['Agent.Os'], 'Windows_NT'), | ||
eq(variables['_SignType'], 'real') | ||
) | ||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.