Conversation
Adapt main commit 44cea09, including Debug suppression missing from this release branch. Preserve build and test coverage, signing, and per-leg diagnostic artifacts. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
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.
Problem
Backport #10496 to release/8.0.4xx. Multiple build legs can publish packages to the shared PackageArtifacts/BlobArtifacts containers, causing concurrent uploads.
Solution
Semantically adapt #10496 rather than blindly cherry-picking the main-branch patch: this release branch also lacks Windows Debug publishing suppression. Both pipeline YAMLs now pass
/p:Publish=falsefor macOS and Linux and use_ExtraBuildArgsto suppress publishing for Windows Debug/non-Release configurations. Windows Release keeps its existing publishing behavior.Preserve this branch's existing official product-build path (
/p:Test=false), PR integration tests, signing, source-build configuration, diagnostic/test artifact settings, localization, and post-build processing. Reuse commit 2b49f7b; no unrelated checkout changes are included.Checks:
Validation: refreshed
origin/release/8.0.4xxand confirmed the backport is one commit ahead with no base divergence.git diff --checkpasses. Both YAMLs parse with PyYAML; assertions check the Windows Release/Debug publishing arguments and both Unix build commands. Removing only the intended publishing additions yields parsed YAML identical to the refreshed release baseline. The diff is limited to 15 added lines acrossazure-pipelines.ymlandazure-pipelines-pr.yml.Limitations: static validation only; no live Azure Pipelines template expansion, full builds, unit/integration test execution, or CI retries were performed.