Skip to content

Commit

Permalink
Use conda mambabuild not mamba mambabuild (#1338)
Browse files Browse the repository at this point in the history
With the release of conda 23.7.3, mamba's mambabuild stopped working. With boa installed, `conda mambabuild` uses the mamba solver, so just use that instead.

See also rapidsai/cudf#14068.

Authors:
  - Lawrence Mitchell (https://github.com/wence-)

Approvers:
  - Bradley Dice (https://github.com/bdice)
  - Ray Douglass (https://github.com/raydouglass)

URL: #1338
  • Loading branch information
wence- authored Sep 8, 2023
1 parent f3ca1d7 commit 9053d62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ rapids-print-env

rapids-logger "Begin cpp build"

rapids-mamba-retry mambabuild conda/recipes/librmm
# This calls mambabuild when boa is installed (as is the case in the CI images)
rapids-conda-retry mambabuild conda/recipes/librmm

rapids-upload-conda-to-s3 cpp
3 changes: 2 additions & 1 deletion ci/build_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ rapids-logger "Begin py build"

CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp)

rapids-mamba-retry mambabuild -c "${CPP_CHANNEL}" conda/recipes/rmm
# This calls mambabuild when boa is installed (as is the case in the CI images)
rapids-conda-retry mambabuild -c "${CPP_CHANNEL}" conda/recipes/rmm

rapids-upload-conda-to-s3 python

0 comments on commit 9053d62

Please sign in to comment.