From ae9f4fb705fcfeb434e548e139989cb47fd6748e Mon Sep 17 00:00:00 2001 From: James Lamb Date: Wed, 16 Oct 2024 08:33:53 -0500 Subject: [PATCH] remove more cugraph stuff from build_python.sh --- ci/build_python.sh | 34 +--------------------------------- 1 file changed, 1 insertion(+), 33 deletions(-) diff --git a/ci/build_python.sh b/ci/build_python.sh index 9b00172..9a02436 100755 --- a/ci/build_python.sh +++ b/ci/build_python.sh @@ -23,38 +23,11 @@ echo "${version}" > VERSION rapids-logger "Begin py build" package_dir="python" -for package_name in pylibcugraph cugraph cugraph-pyg cugraph-dgl; do +for package_name in cugraph-pyg cugraph-dgl; do underscore_package_name=$(echo "${package_name}" | tr "-" "_") sed -i "/^__git_commit__/ s/= .*/= \"${git_commit}\"/g" "${package_dir}/${package_name}/${underscore_package_name}/_version.py" done -# TODO: Remove `--no-test` flags once importing on a CPU -# node works correctly -rapids-conda-retry mambabuild \ - --no-test \ - --channel "${CPP_CHANNEL}" \ - conda/recipes/pylibcugraph - -rapids-conda-retry mambabuild \ - --no-test \ - --channel "${CPP_CHANNEL}" \ - --channel "${RAPIDS_CONDA_BLD_OUTPUT_DIR}" \ - conda/recipes/cugraph - -# NOTE: nothing in the cugraph-service packages are CUDA-specific, but they are -# built on each CUDA platform to ensure they are included in each set of -# artifacts, since test scripts only install from one set of artifacts based on -# the CUDA version used for the test run. -version_file_cugraph_service_client="python/cugraph-service/client/cugraph_service_client/_version.py" -sed -i "/^__git_commit__/ s/= .*/= \"${git_commit}\"/g" ${version_file_cugraph_service_client} -version_file_cugraph_service_server="python/cugraph-service/server/cugraph_service_server/_version.py" -sed -i "/^__git_commit__/ s/= .*/= \"${git_commit}\"/g" ${version_file_cugraph_service_server} -rapids-conda-retry mambabuild \ - --no-test \ - --channel "${CPP_CHANNEL}" \ - --channel "${RAPIDS_CONDA_BLD_OUTPUT_DIR}" \ - conda/recipes/cugraph-service - RAPIDS_CUDA_MAJOR="${RAPIDS_CUDA_VERSION%%.*}" if [[ ${RAPIDS_CUDA_MAJOR} == "11" ]]; then @@ -79,9 +52,4 @@ if [[ ${RAPIDS_CUDA_MAJOR} == "11" ]]; then conda/recipes/cugraph-dgl fi -rapids-conda-retry mambabuild \ - --no-test \ - --channel "${RAPIDS_CONDA_BLD_OUTPUT_DIR}" \ - conda/recipes/cugraph-equivariant - rapids-upload-conda-to-s3 python