Enable binary logging in quarantined-tests pipeline#66448
Merged
wtgodbe merged 1 commit intodotnet:mainfrom Apr 24, 2026
Merged
Enable binary logging in quarantined-tests pipeline#66448wtgodbe merged 1 commit intodotnet:mainfrom
wtgodbe merged 1 commit intodotnet:mainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the quarantined-tests Azure Pipelines definition to emit MSBuild binary logs so infra-level “silent” build failures can be diagnosed from uploaded artifacts.
Changes:
- Removes
-noblfrom the quarantined-tests pipeline build steps. - Attempts to add uniquely named binlogs for the SharedFx build and Helix target build under
artifacts/log/.
The quarantined-tests pipeline (def 84) was using -nobl, suppressing binary logs. This made it impossible to diagnose 'Build FAILED, 0 Warnings, 0 Errors' silent failures that affect 12/30 scheduled builds. Replace -nobl with -bl:<unique-name> for each build step so the binlogs are captured in artifacts/log/ and uploaded on failure. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
ddc1b7f to
8e3e28c
Compare
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.
The quarantined-tests pipeline (definition 84) has been failing 12/30 scheduled builds at the infrastructure level with
Build FAILED, 0 Warnings, 0 Errors— a silent MSBuild failure that produces no diagnostic output. The-noblflag was suppressing binary logs, making root cause analysis impossible.Replace
-noblwith-bl:artifacts/log/Build.SharedFx.binlogand-bl:artifacts/log/Build.HelixTarget.binlogso both build steps produce uniquely-named binlogs that get uploaded via the existingartifacts/log/artifact.This blocks the quarantine unquarantine workflow — with only 18/30 builds producing test results, the max test appearance rate is 60%, below the 66% threshold needed to qualify tests for unquarantine.