From 07c8445f4b422053e5822b89a013c49bccc9535a Mon Sep 17 00:00:00 2001 From: James Lamb Date: Tue, 29 Oct 2024 09:36:15 -0500 Subject: [PATCH] revert no-build-isolation stuff --- ci/build_wheel_cuvs.sh | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/ci/build_wheel_cuvs.sh b/ci/build_wheel_cuvs.sh index aeac3188a..e03da9f19 100755 --- a/ci/build_wheel_cuvs.sh +++ b/ci/build_wheel_cuvs.sh @@ -3,27 +3,6 @@ set -euo pipefail -package_name="cuvs" - -rapids-logger "Generating build requirements" - -rapids-dependency-file-generator \ - --output requirements \ - --file-key "py_build_${package_name}" \ - --file-key "py_rapids_build_${package_name}" \ - --matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION};cuda_suffixed=true" \ -| tee /tmp/requirements-build.txt - -rapids-logger "Installing build requirements" -python -m pip install \ - -v \ - --prefer-binary \ - -r /tmp/requirements-build.txt - -# build with '--no-build-isolation', for better sccache hit rate -# 0 really means "add --no-build-isolation" (ref: https://github.com/pypa/pip/issues/5735) -export PIP_NO_BUILD_ISOLATION=0 - case "${RAPIDS_CUDA_VERSION}" in 12.*) EXTRA_CMAKE_ARGS=";-DUSE_CUDA_MATH_WHEELS=ON" @@ -36,4 +15,4 @@ esac # Set up skbuild options. Enable sccache in skbuild config options export SKBUILD_CMAKE_ARGS="-DDETECT_CONDA_ENV=OFF;-DFIND_CUVS_CPP=OFF${EXTRA_CMAKE_ARGS}" -ci/build_wheel.sh "${package_name}" python/cuvs +ci/build_wheel.sh cuvs python/cuvs