Remove obsolete AOT CI parameters from planetarycomputer ci.yml#56238
Merged
chahibi merged 1 commit intoAzure:mainfrom Feb 13, 2026
Merged
Remove obsolete AOT CI parameters from planetarycomputer ci.yml#56238chahibi merged 1 commit intoAzure:mainfrom
chahibi merged 1 commit intoAzure:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes obsolete AOT compatibility CI parameters (CheckAOTCompat and AOTTestInputs) from the planetarycomputer service directory's ci.yml file. These parameters were made obsolete by PR #53752, which consolidated AOT compatibility checking logic directly into the build scripts. The pipeline now automatically determines AOT compatibility requirements by checking the AotCompatOptOut MSBuild property in project files and iterating over the Artifacts list directly, eliminating the need for separate CI configuration parameters.
Changes:
- Removed
CheckAOTCompat: trueparameter from sdk/planetarycomputer/ci.yml - Removed
AOTTestInputsconfiguration block that specified the ExpectedAotWarnings.txt filepath
jsquire
approved these changes
Feb 13, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Remove obsolete AOT CI parameters from planetarycomputer ci.yml
Description
Removes the
CheckAOTCompatandAOTTestInputsparameters fromsdk/planetarycomputer/ci.ymlto align with the changes introduced in PR #53752.PR #53752 simplified the AOT compatibility pipeline by consolidating AOT checking logic into the build scripts themselves, eliminating the need for explicit CI parameters. However, the
planetarycomputerservice directory was not included in that change.Changes
CheckAOTCompat: truefromsdk/planetarycomputer/ci.ymlAOTTestInputsblock fromsdk/planetarycomputer/ci.ymlWhy
These parameters are no longer consumed by the pipeline templates. AOT compatibility is now automatically determined by:
AotCompatOptOutMSBuild property in project filesArtifactsdirectly instead of requiring separateAOTTestInputs