Skip to content

Commit

Permalink
Add librmm and gtest to host environment. (#64)
Browse files Browse the repository at this point in the history
Currently conda builds are fetching `rmm` from CPM, rather than using conda packages. This PR aims to use conda for as many dependencies as possible to avoid repackaging and clobbering issues.

Resolves #20.

Related to #22, #54, similar to rapidsai/cudf#13230

Authors:
  - Bradley Dice (https://github.com/bdice)

Approvers:
  - https://github.com/jakirkham
  - Peter Andreas Entschev (https://github.com/pentschev)
  - Ray Douglass (https://github.com/raydouglass)

URL: #64
  • Loading branch information
bdice committed Jul 5, 2023
1 parent b439e7f commit 7add326
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions ci/release/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ sed_runner "s/^version = .*/version = \"${NEXT_FULL_TAG}\"/g" python/pyproject.t


# bump RAPIDS libs
sed_runner "/- librmm =/ s/=.*/=${NEXT_RAPIDS_VERSION}/g" conda/recipes/ucxx/meta.yaml
sed_runner "/- rmm =/ s/=.*/=${NEXT_RAPIDS_VERSION}/g" conda/recipes/ucxx/meta.yaml
for FILE in conda/environments/*.yaml dependencies.yaml; do
sed_runner "/- cuda==/ s/==.*/==${NEXT_SHORT_TAG_PEP440}\.*/g" ${FILE};
Expand Down
3 changes: 3 additions & 0 deletions conda/recipes/ucxx/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ python:

ucx:
- 1.14.0

gtest_version:
- ">=1.13.0"
2 changes: 2 additions & 0 deletions conda/recipes/ucxx/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ requirements:
- cuda-version ={{ cuda_version }}
- ucx
- python
- librmm =23.08
- gtest {{ gtest_version }}

outputs:
- name: libucxx
Expand Down

0 comments on commit 7add326

Please sign in to comment.