Add Copilot skill for investigating VS integration test failures#83002
Merged
akhera99 merged 2 commits intodotnet:mainfrom Apr 6, 2026
Merged
Add Copilot skill for investigating VS integration test failures#83002akhera99 merged 2 commits intodotnet:mainfrom
akhera99 merged 2 commits intodotnet:mainfrom
Conversation
…test failures Adds a new Copilot skill that analyzes roslyn-integration-CI pipeline failures: - Fetches build timeline and identifies failed/canceled VS_Integration_* jobs - Parses test runner logs for VSIX install status, test progress, and VS/.NET versions - Downloads and analyzes published artifacts (exception XMLs, screenshots, MEF errors) - Merges timeout + exception signals to identify root causes like runtime mismatches - Outputs structured JSON summary for agent reasoning Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
jasonmalinowski
approved these changes
Apr 6, 2026
|
|
||
| if ($job.name -match 'VS_Integration') { | ||
| # Check if this was a timeout (canceled after running > 140 min) | ||
| if ($job.result -eq 'canceled' -and $durationMin -ne 'N/A' -and $durationMin -gt 140) { |
Member
There was a problem hiding this comment.
This check is a bit dangerous if we ever change the timeout.
|
|
||
| # --- Merge signals into root cause --- | ||
|
|
||
| # Best case: Exception XML explains WHY tests hung (e.g., assembly load failure causing timeout) |
Member
There was a problem hiding this comment.
Is this something that needs to be in the script or are we better off just letting the LLM figure it out? My worry is if this might direct it in a bad direction...
This was referenced Apr 8, 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.
Adds a new Copilot skill that analyzes roslyn-integration-CI pipeline failures:
Microsoft Reviewers: Open in CodeFlow