From 1278827b7a822296bed470b34d7933e247bec04c Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 25 Feb 2025 14:58:35 -0600 Subject: [PATCH] Use conda-build instead of conda-mambabuild (#648) This changes from `conda mambabuild` to `conda build`. Conda now uses the mamba solver so no performance regressions are expected. This is a temporary change as we plan to migrate to `rattler-build` in the near future. However, this is needed sooner to drop `boa` and unblock Python 3.13 migrations. xref: https://github.com/rapidsai/build-planning/issues/149 Authors: - Bradley Dice (https://github.com/bdice) Approvers: - James Lamb (https://github.com/jameslamb) URL: https://github.com/rapidsai/kvikio/pull/648 --- ci/build_cpp.sh | 2 +- ci/build_python.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/build_cpp.sh b/ci/build_cpp.sh index ca1c20c7b0..3b667ecbd9 100755 --- a/ci/build_cpp.sh +++ b/ci/build_cpp.sh @@ -18,7 +18,7 @@ conda config --set path_conflict prevent sccache --zero-stats -RAPIDS_PACKAGE_VERSION=$(rapids-generate-version) rapids-conda-retry mambabuild conda/recipes/libkvikio +RAPIDS_PACKAGE_VERSION=$(rapids-generate-version) rapids-conda-retry build conda/recipes/libkvikio sccache --show-adv-stats diff --git a/ci/build_python.sh b/ci/build_python.sh index b15f2a9d75..61d0545ecc 100755 --- a/ci/build_python.sh +++ b/ci/build_python.sh @@ -22,7 +22,7 @@ conda config --set path_conflict prevent sccache --zero-stats -RAPIDS_PACKAGE_VERSION=$(head -1 ./VERSION) rapids-conda-retry mambabuild \ +RAPIDS_PACKAGE_VERSION=$(head -1 ./VERSION) rapids-conda-retry build \ --channel "${CPP_CHANNEL}" \ conda/recipes/kvikio