Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of Change
This pull request includes several changes to the build and test pipeline configurations, as well as updates to integration tests. The most important changes include the refactor of new yaml template steps and also new properties to manage them.
Also trying not to Sign by default so we can use this on public bots
Pipeline configuration updates:
eng/pipelines/common/maui-templates-steps.yml
: Added new parameters and steps to handle artifact downloading, version extraction, .NET installation, test execution, and artifact publishing.eng/pipelines/common/maui-templates.yml
: IntroducedMacBuildPool
andBuildCategoriesMac
parameters and added jobs for macOS template builds. [1] [2] [3]eng/pipelines/handlers.yml
: AddedMacBuildPool
parameter to thestages
section to specify the macOS build pool configuration.Integration test updates:
src/TestUtils/src/Microsoft.Maui.IntegrationTests/AOTTemplateTest.cs
: Added_RequireCodeSigning=false
to the build properties to allow iOS app builds without a signing key.src/TestUtils/src/Microsoft.Maui.IntegrationTests/MacTemplateTest.cs
: Updated test methods to include asign
parameter for conditional code signing and adjusted build properties accordingly. [1] [2] [3] [4]Issues Fixed
More work for #25944