Add runtime-diagnostics pipeline to Build Analysis#127174
Open
max-charlamb wants to merge 1 commit intomainfrom
Open
Add runtime-diagnostics pipeline to Build Analysis#127174max-charlamb wants to merge 1 commit intomainfrom
max-charlamb wants to merge 1 commit intomainfrom
Conversation
Add the runtime-diagnostics pipeline (definition ID 309) to the Build Analysis configuration so that its failures are tracked and block PR merges. This pipeline runs SOS integration tests, cDAC no-fallback tests, DAC baseline tests, and cDAC dump tests against a locally-built runtime. It triggers on PRs that touch src/native/managed/cdac/, src/coreclr/debug/runtimeinfo/, or eng/pipelines/. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
steveisok
approved these changes
Apr 20, 2026
This was referenced Apr 20, 2026
noahfalk
approved these changes
Apr 21, 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.
Note
This PR was created with the assistance of GitHub Copilot.
Summary
Add the
runtime-diagnosticspipeline (Azure DevOps definition ID 309) to the Build Analysis configuration (eng/build-analysis-configuration.json).Motivation
The
runtime-diagnosticspipeline runs SOS integration tests, cDAC no-fallback tests, DAC baseline tests, and cDAC dump tests against a locally-built runtime. It triggers on PRs that touch:src/native/managed/cdac/**src/coreclr/debug/runtimeinfo/**eng/pipelines/**Currently, failures in this pipeline are not tracked by Build Analysis, meaning they don't block PR merges. This change adds the pipeline to the allowlist so that its results are included in the PR Build Analysis check.
Change
Single-line addition to
eng/build-analysis-configuration.jsonadding pipeline ID 309 (runtime-diagnostics).Impact
Only PRs that trigger the
runtime-diagnosticspipeline (those touching cDAC, runtimeinfo, or pipeline YAML paths) will be affected. Unrelated PRs are not impacted.