-
Notifications
You must be signed in to change notification settings - Fork 36
wheels: build with CUDA 13.0, test against mix of CTK versions, make 'torch-geometric' fully optional for 'cugraph-pyg' #434
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
base: release/26.04
Are you sure you want to change the base?
Changes from 4 commits
5e079d2
68159a5
ba16e2d
13ef184
9c60899
73048fd
06d75a4
3c01d1c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,8 +25,10 @@ jobs: | |
| - wheel-build-libwholegraph | ||
| - wheel-build-pylibwholegraph | ||
| - wheel-tests-pylibwholegraph | ||
| - wheel-tests-nightly-pylibwholegraph | ||
| - wheel-build-cugraph-pyg | ||
| - wheel-tests-cugraph-pyg | ||
| - wheel-tests-nightly-cugraph-pyg | ||
|
||
| secrets: inherit | ||
| uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@release/26.04 | ||
| if: always() | ||
|
|
@@ -259,6 +261,16 @@ jobs: | |
| build_type: pull-request | ||
| script: ci/test_wheel_pylibwholegraph.sh | ||
| matrix_filter: map(select(.PY_VER != "3.14")) | map(select(.ARCH == "amd64")) | ||
| wheel-tests-nightly-pylibwholegraph: | ||
| needs: [wheel-build-pylibwholegraph, changed-files] | ||
| secrets: inherit | ||
| uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@release/26.04 | ||
| if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_wheels | ||
| with: | ||
| build_type: pull-request | ||
| script: ci/test_wheel_pylibwholegraph.sh | ||
| matrix_filter: map(select(.PY_VER != "3.14")) | map(select(.ARCH == "amd64")) | ||
| matrix_type: nightly | ||
| wheel-build-cugraph-pyg: | ||
| needs: checks | ||
| secrets: inherit | ||
|
|
@@ -281,3 +293,13 @@ jobs: | |
| build_type: pull-request | ||
| script: ci/test_wheel_cugraph-pyg.sh | ||
| matrix_filter: map(select(.PY_VER != "3.14")) | map(select(.ARCH == "amd64")) | ||
| wheel-tests-nightly-cugraph-pyg: | ||
| needs: [wheel-build-pylibwholegraph, wheel-build-cugraph-pyg, changed-files] | ||
| secrets: inherit | ||
| uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@release/26.04 | ||
| if: fromJSON(needs.changed-files.outputs.changed_file_groups).test_python_wheels | ||
| with: | ||
| build_type: pull-request | ||
| script: ci/test_wheel_cugraph-pyg.sh | ||
| matrix_filter: map(select(.PY_VER != "3.14")) | map(select(.ARCH == "amd64")) | ||
| matrix_type: nightly | ||
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.
TODO before merging: remove all this
We cover a different mix of environments in nightlies and this project's dependency tree is very sensitive to that mix, so want to be sure we've accounted for everything.