Skip to content

Commit 239e2cd

Browse files
authored
stop uploading packages to downloads.rapids.ai (#112)
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: - Tom Augspurger (https://github.com/TomAugspurger) URL: #112
1 parent c7a0ea1 commit 239e2cd

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

ci/build_python.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2022-2023, NVIDIA CORPORATION.
2+
# Copyright (c) 2022-2025, NVIDIA CORPORATION.
33

44
set -euo pipefail
55

@@ -28,5 +28,3 @@ rattler-build build --recipe conda/recipes/rapids-dask-dependency \
2828
# remove build_cache directory to avoid uploading the entire source tree
2929
# tracked in https://github.com/prefix-dev/rattler-build/issues/1424
3030
rm -rf "$RAPIDS_CONDA_BLD_OUTPUT_DIR"/build_cache
31-
32-
rapids-upload-conda-to-s3 python

ci/build_wheel.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ sed -i "s/^version = .*/version = \"${version}\"/g" "pyproject.toml"
1313

1414
python -m pip wheel . -w "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}" -vv --no-deps --disable-pip-version-check
1515

16-
RAPIDS_PY_WHEEL_NAME="rapids-dask-dependency" RAPIDS_PY_WHEEL_PURE="1" rapids-upload-wheels-to-s3 python "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"
17-
1816
# Run tests
1917
python -m pip install "$(echo ${RAPIDS_WHEEL_BLD_OUTPUT_DIR}/*.whl)[test]"
2018
python -m pytest -v tests/

0 commit comments

Comments
 (0)