feat: add fast variant of CI build and smoke test - #109
Open
john00003 wants to merge 3 commits into
Open
Conversation
john00003
requested review from
amd-ivaganev,
gaoikawa,
sbates130272 and
vcave
as code owners
July 29, 2026 16:40
Collaborator
Author
|
/run-ci |
Collaborator
Author
|
We'll need to update the workflows in /usr/ on the CI runners in order for the CI changes to reflect. |
|
✅ Hardware CI passed for dafc0cd (dist-build + smoke-test + tiny-test). |
sbates130272
requested changes
Jul 29, 2026
- only use gfx950 - disable compiling some components of UCX and NIXL
john00003
force-pushed
the
feat/dist-build-fast
branch
from
July 29, 2026 21:02
2b207b0 to
3d69848
Compare
Collaborator
Author
|
@sbates130272 I addressed your comments! Sorry, I accidentally squashed the fixup commits, but I tried to address all of your comments. |
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.
Motivation
We want a faster version of the
dist-buildandsmoke-testMakefile targets.Technical Details
The
dist-build-fasttarget improves the build time by:gfx950(the machines our CI targets)Additionally, we disable building the tests/examples for both hipFile and NIXL to reduce the build time.
Currently the
smoke-test-fastMakefile target doesn't run any different tests than the normal variant, it just uses the docker container built by thedist-build-fastvariant.Test Plan
Try the
dist-build-fastandsmoke-test-fast, ensure the build and tests pass. Measure the amount of time the reduced Makefile targets take compared to the regular targets.Test Result
The reduced compile targets and disabling the tests and examples save ~30s. The reduced gfx compile targets save a couple minutes.
Submission Checklist