Skip to content

Commit 5b5e9ae

Browse files
authored
stop uploading packages to downloads.rapids.ai (#2688)
Contributes to rapidsai/build-planning#181 * removes all uploads of conda packages and wheels to `downloads.rapids.ai` ## Notes for Reviewers ### How I identified changes Looked for uses of the relevant `gha-tools` tools, as well as documentation about `downloads.rapids.ai`, being on the NVIDIA VPN, using S3, etc. like this: ```shell git grep -i -E 's3|upload|downloads\.rapids|vpn' ``` ### How I tested this See "How I tested this" on rapidsai/shared-workflows#364 Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Bradley Dice (https://github.com/bdice) URL: #2688
1 parent 504eb6d commit 5b5e9ae

6 files changed

Lines changed: 3 additions & 13 deletions

File tree

ci/build_cpp.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@ sccache --show-adv-stats
3636

3737
# remove build_cache directory
3838
rm -rf "$RAPIDS_CONDA_BLD_OUTPUT_DIR"/build_cache
39-
40-
rapids-upload-conda-to-s3 cpp

ci/build_python.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,3 @@ sccache --show-adv-stats
5050

5151
# remove build_cache directory
5252
rm -rf "$RAPIDS_CONDA_BLD_OUTPUT_DIR"/build_cache
53-
54-
rapids-upload-conda-to-s3 python

ci/build_wheel.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ source rapids-init-pip
77

88
package_name=$1
99
package_dir=$2
10-
package_type=$3
11-
underscore_package_name=$(echo "${package_name}" | tr "-" "_")
1210

1311
# Clear out system ucx files to ensure that we're getting ucx from the wheel.
1412
rm -rf /usr/lib64/ucx
@@ -17,8 +15,6 @@ rm -rf /usr/lib64/libuc*
1715
source rapids-configure-sccache
1816
source rapids-date-string
1917

20-
RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen "${RAPIDS_CUDA_VERSION}")"
21-
2218
rapids-generate-version > ./VERSION
2319

2420
cd "${package_dir}"
@@ -64,5 +60,3 @@ sccache --show-adv-stats
6460

6561
# repair wheels and write to the location that artifact-uploading code expects to find them
6662
python -m auditwheel repair -w "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}" "${EXCLUDE_ARGS[@]}" dist/*
67-
68-
RAPIDS_PY_WHEEL_NAME="${underscore_package_name}_${RAPIDS_PY_CUDA_SUFFIX}" rapids-upload-wheels-to-s3 "${package_type}" "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"

ci/build_wheel_libraft.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ rapids-pip-retry install \
2828
# 0 really means "add --no-build-isolation" (ref: https://github.com/pypa/pip/issues/5735)
2929
export PIP_NO_BUILD_ISOLATION=0
3030

31-
ci/build_wheel.sh libraft ${package_dir} cpp
31+
ci/build_wheel.sh libraft ${package_dir}
3232
ci/validate_wheel.sh ${package_dir} "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"

ci/build_wheel_pylibraft.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen "${RAPIDS_CUDA_VERSION}")"
1717
LIBRAFT_WHEELHOUSE=$(RAPIDS_PY_WHEEL_NAME="libraft_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-wheels-from-github cpp)
1818
echo "libraft-${RAPIDS_PY_CUDA_SUFFIX} @ file://$(echo "${LIBRAFT_WHEELHOUSE}"/libraft_*.whl)" >> "${PIP_CONSTRAINT}"
1919

20-
ci/build_wheel.sh pylibraft ${package_dir} python
20+
ci/build_wheel.sh pylibraft ${package_dir}
2121
ci/validate_wheel.sh ${package_dir} "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"

ci/build_wheel_raft_dask.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ else
2525
export PYDISTCHECK_MAX_SIZE="2M"
2626
fi
2727

28-
ci/build_wheel.sh raft-dask ${package_dir} python
28+
ci/build_wheel.sh raft-dask ${package_dir}
2929
ci/validate_wheel.sh ${package_dir} "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"

0 commit comments

Comments
 (0)