-
Notifications
You must be signed in to change notification settings - Fork 311
fix(ci): separate image and nightly FT tag scopes #1632
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
Merged
Merged
Changes from 14 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4cb0877
Re-enable ft-short FT e2e tests in CI
fzyzcjy 6d5a122
Fix inference-engine weight-checksum consumer
fzyzcjy 4349c47
Raise ft-short non-real-rollout est_time to 2400s
fzyzcjy 068bc69
Start the FT-test ray cluster with actor + rollout GPUs
fzyzcjy 297efde
Clean up FT e2e dumps after each test to avoid filling CI disk
fzyzcjy 10cfce3
Use expandable_segments for FT real_rollout actor to avoid H100 OOM
fzyzcjy f4cd575
Raise est_time for the 30B real_rollout FT tests
fzyzcjy 731dc5a
Do not disable sglang cuda graph in FT real_rollout tests
fzyzcjy d901760
Scope real_rollout expandable_segments to the train actor via --train…
fzyzcjy 0930f59
Run fault-tolerance suites on full-node H200 CI
guapisolo 27d9811
Merge branch 'main' into ft/reenable-ft-short
guapisolo ae5aaec
Merge branch 'main' into ft/reenable-ft-short
guapisolo 62b211b
tune FT CI estimates from passed runtime data
guapisolo 5a350bc
fix(ci): separate image and nightly FT tag scopes
guapisolo 9121497
Merge branch 'main' into fix/ci-tag-scopes
guapisolo 500cffb
test(ft): drop the expandable_segments investigation comment
guapisolo 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.
This ~470-char expression is now copy-pasted 7 times — this PR is itself evidence of the cost (7 near-identical line edits), and a one-stage drift would be invisible until a nightly quietly runs the wrong test set. The precedence logic here is also the riskiest artifact of the PR, and it's only covered by actionlint (syntax, not behavior) — the new unit tests verify
filter_testsgiven already-correct flags, not that the workflow emits those flags per trigger.Suggested follow-up: compute a
scope-flagsoutput once in a preliminary job (resolve-ci-imageis a natural home) and reference it per stage — or better, pass the raw event name + labels intorun_suite.pyand compute the scope in Python where it's unit-testable.(nit: clause 2's
github.event_name != 'schedule' && !contains(..., 'nightly')guards are unreachable — any case where they'd matter is already consumed by clause 1 or killed by!contains(run-ci-all)— so they could be dropped to lighten the line.)