-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[CI] Extend gate to all test types and decouple from PR review #34705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
kubaflo
wants to merge
45
commits into
main
Choose a base branch
from
copilot-kubaflo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
c783517
Support for all tests
kubaflo 0bea0a7
Remove UI-test-only language from try-fix and pr-review skills
kubaflo 3d3a026
[TEMP] Always skip Try-Fix in pipeline (will revert)
kubaflo d69f4ae
Add UnitTests directory to log structure example
kubaflo d8c671c
Revert "[TEMP] Always skip Try-Fix in pipeline (will revert)"
kubaflo c543739
Fix gate output: strict templates, no cross-phase duplication
kubaflo 77c5696
Decouple gate from pr-review: run as script step before copilot agent
kubaflo d5a8ec4
Remove PR finalize step from Review-PR.ps1
kubaflo a2c5cd6
Post gate as separate PR comment, remove from AI summary
kubaflo a4c26bb
Add post-gate-comment.ps1, fully remove gate from AI summary
kubaflo 6de98f7
Simplify post-ai-summary-comment.ps1: always overwrite, no session hi…
kubaflo ddb5c95
Remove status table from AI summary, make gate collapsible
kubaflo 5627fe6
Match gate comment format to AI summary style
kubaflo 9303eef
Fix: positional parameter error when calling post scripts
kubaflo c1687b7
Address PR review feedback: 10 fixes
kubaflo 5dbb6d6
Remove stale review file
kubaflo afe7c26
Fix: prefer PR number over git diff for test detection
kubaflo f58a9f3
Add env error detection and failure details to gate report
kubaflo 755e14f
Add retry logic (3 attempts) for environment errors in gate
kubaflo 03c1371
Emulator boot: retry 3x, longer offline wait, fail-fast on hang
kubaflo dc0994b
Fix: clear stale test output before each gate run
kubaflo a467c2e
Replace Tee-Object with capture+write to prevent pipeline breaks
kubaflo e12891f
Use unique test output files per gate run — never overwrite
kubaflo e1705d9
Add logging when test-output.log is copied/missing
kubaflo 4060efb
Simplify: all test types return $LogFile directly, no shared files
kubaflo df5bffe
Update BuildAndRunHostApp.ps1
kubaflo 9f0eaf1
Enhance gate report with per-test execution details
kubaflo 0f28c45
Show helpful SKIPPED message when gate finds no tests
kubaflo 7eef92b
Add gate result labels (s/agent-gate-passed/failed/skipped)
kubaflo 564fa5a
Restructure gate output: collapsible logs + clear summary table
kubaflo 3328d59
Redesign gate PR comment: side-by-side table + collapsible details
kubaflo 70acef0
Embed full test logs in gate comment as collapsible sections
kubaflo eb4e196
Rename gate title to 'Test Before and After Fix'
kubaflo b111ca4
Fix gate labels: create labels if missing + log errors
kubaflo 0405a72
Fix duplicate comments: paginate API + update latest match
kubaflo 8a393cb
Improve gate retry: reboot device on app launch failure + 30s wait
kubaflo 2dc6a10
Fix false PASSED on XHarness app crash (exit 83)
kubaflo 3c84623
Fix: trust test results over XHarness exit code
kubaflo 2248b84
Fix gate labels: drop gh label create (needs read:org scope)
kubaflo 4b56567
Fix: Run-DeviceTests Write-Host invisible to gate parser
kubaflo a2e527f
Fix Windows device tests: win10-x64 → win-x64 RID
kubaflo 2a622d8
Fix Windows device tests: drop RID entirely
kubaflo 104f997
Fix Windows device tests: win-x64 RID + UseMonoRuntime=false
kubaflo ea764a2
Merge branch 'main' into copilot-kubaflo
kubaflo 5ecf021
Address PR review feedback from PureWeen
kubaflo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Step 3 still instructs running gate via the
taskagent, but the new workflow inReview-PR.ps1runs gate directly viaverify-tests-fail.ps1before invoking the Copilotpr-reviewskill. Please update this step to reflect the new script-driven gate (or clarify that this doc is only for manual, agent-driven gate runs).