Merged
Conversation
Member
Author
|
This needs additional work. |
d299810 to
dd7e5dd
Compare
- Set PublishingVersion=4 in eng/Publishing.props - Add publishingVersion: 4 to jobs template, publishingInfraVersion: 4 to post-build - Remove enablePublishUsingPipelines and DotNetPublishUsingPipelines references - Set enablePublishing: true on build jobs (Windows_NT, Linux, MacOS) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
dd7e5dd to
8edcd02
Compare
Member
Author
|
Looking good. |
akoeplinger
approved these changes
Apr 4, 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.
V4 Publishing Migration
Migrates arcade-validation from Arcade V3 publishing to V4 publishing.
Changes
<PublishingVersion>4</PublishingVersion>enablePublishUsingPipelinesparameter, addedpublishingVersion: 4, addedenablePublishing: trueon Windows_NT job (the only job that hadDotNetPublishUsingPipelines=true), removedDotNetPublishUsingPipelinesfrom build args on all jobspublishingInfraVersion: 4to post-build templateenablePublishUsingPipelines: trueenablePublishUsingPipelines: falseVerification
PublishingVersion="4"Validate_Signing_Linuxfails due to pre-existing infra issue (disk space at 99.19%), unrelated to V4 changes.Notes
enablePublishing: true. Linux and MacOS jobs usedDotNetPublishUsingPipelines=$(_PublishUsingPipelines)where the_PublishUsingPipelinesvariable is no longer set by the Arcade 26203.3 templates (resolves to empty/false). Per V4 migration rules, only jobs whereDotNetPublishUsingPipelinesresolved totrueshould getenablePublishing: true.enablePublishingtemplate parameter).