Skip to content
/ cudf Public
forked from rapidsai/cudf

Commit

Permalink
Use mamba build rather than mamba mambabuild
Browse files Browse the repository at this point in the history
Since Conda 23.7.3, the plugin mechanism changed, and mambabuild
broke.

Adapt to this change, following the fix in mamba (mamba-org/mamba#2732)
  • Loading branch information
wence- committed Sep 8, 2023
1 parent b2ab256 commit d5a6083
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ rapids-print-env

rapids-logger "Begin cpp build"

rapids-mamba-retry mambabuild \
# With boa installed mamba build forward to boa
rapids-mamba-retry build \
conda/recipes/libcudf

rapids-upload-conda-to-s3 cpp
9 changes: 5 additions & 4 deletions ci/build_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,25 @@ CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp)

# TODO: Remove `--no-test` flag once importing on a CPU
# node works correctly
rapids-mamba-retry mambabuild \
# With boa install mamba build forwards to the boa builder
rapids-mamba-retry build \
--no-test \
--channel "${CPP_CHANNEL}" \
conda/recipes/cudf

rapids-mamba-retry mambabuild \
rapids-mamba-retry build \
--no-test \
--channel "${CPP_CHANNEL}" \
--channel "${RAPIDS_CONDA_BLD_OUTPUT_DIR}" \
conda/recipes/dask-cudf

rapids-mamba-retry mambabuild \
rapids-mamba-retry build \
--no-test \
--channel "${CPP_CHANNEL}" \
--channel "${RAPIDS_CONDA_BLD_OUTPUT_DIR}" \
conda/recipes/cudf_kafka

rapids-mamba-retry mambabuild \
rapids-mamba-retry build \
--no-test \
--channel "${CPP_CHANNEL}" \
--channel "${RAPIDS_CONDA_BLD_OUTPUT_DIR}" \
Expand Down

0 comments on commit d5a6083

Please sign in to comment.