Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions ci/test_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ RMM_WHEELHOUSE=$(rapids-download-from-github "$(rapids-artifact-name wheel_pytho
# generate constraints (possibly pinning to oldest support versions of dependencies)
rapids-generate-pip-constraints test_python "${PIP_CONSTRAINT}"

python -m venv librmm-env
Comment thread
coderabbitai[bot] marked this conversation as resolved.
. librmm-env/bin/activate

rapids-pip-retry install \
-v \
--prefer-binary \
--constraint "${PIP_CONSTRAINT}" \
"$(echo "${LIBRMM_WHEELHOUSE}"/librmm_"${RAPIDS_PY_CUDA_SUFFIX}"*.whl)"
python -c "import librmm; librmm.load_library()"
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
deactivate

# notes:
#
# * echo to expand wildcard before adding `[test]` requires for pip
Expand Down
Loading