-
Notifications
You must be signed in to change notification settings - Fork 952
consolidate more conda solves in CI #18014
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
Conversation
@@ -20,6 +18,8 @@ FILE_KEY=$1 | |||
rapids-dependency-file-generator \ | |||
--output conda \ | |||
--file-key "${FILE_KEY}" \ | |||
--prepend-channel "${CPP_CHANNEL}" \ | |||
--prepend-channel "${PYTHON_CHANNEL}" \ |
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.
I think these channels missing was the cause of what we observed in #17994 (comment), where it looks like the recently-built-in-CI packages were being ignored in favor of older packages from the rapidsai-nightly
channel.
packages: | ||
- libcudf-example==25.4.*,>=0.0.0a0 | ||
- libcudf_kafka==25.4.*,>=0.0.0a0 | ||
- libcudf-tests==25.4.*,>=0.0.0a0 |
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.
Thinking here that we don't need depends_on
groups for each of these, given they're only referenced in one place.
Previous discussions @bdice and I had about that:
Looks like a CLI parameter issue in |
Sorry about that! Fixed in the most recent commit. And pulled in latest |
Seeing this in polars tests:
Those are unrelated and should be resolved by #18015 |
/merge |
Description
Contributes to rapidsai/build-planning#22
Follow-up to #17995
Checklist