Skip to content

Commit ca35dda

Browse files
authored
stop uploading packages to downloads.rapids.ai (#236)
## Description 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
1 parent bd85bc5 commit ca35dda

File tree

5 files changed

+11
-18
lines changed

5 files changed

+11
-18
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ concurrency:
2929
jobs:
3030
conda-python-build:
3131
secrets: inherit
32-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.06
32+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
3333
with:
3434
build_type: ${{ inputs.build_type || 'branch' }}
3535
branch: ${{ inputs.branch }}
@@ -41,15 +41,15 @@ jobs:
4141
upload-conda:
4242
needs: conda-python-build
4343
secrets: inherit
44-
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.06
44+
uses: rapidsai/shared-workflows/.github/workflows/conda-upload-packages.yaml@branch-25.08
4545
with:
4646
build_type: ${{ inputs.build_type || 'branch' }}
4747
branch: ${{ inputs.branch }}
4848
date: ${{ inputs.date }}
4949
sha: ${{ inputs.sha }}
5050
wheel-build:
5151
secrets: inherit
52-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06
52+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
5353
with:
5454
build_type: ${{ inputs.build_type || 'branch' }}
5555
branch: ${{ inputs.branch }}
@@ -65,7 +65,7 @@ jobs:
6565
wheel-publish:
6666
needs: wheel-build
6767
secrets: inherit
68-
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.06
68+
uses: rapidsai/shared-workflows/.github/workflows/wheels-publish.yaml@branch-25.08
6969
with:
7070
build_type: ${{ inputs.build_type || 'branch' }}
7171
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
- wheel-build
1919
- wheel-tests
2020
secrets: inherit
21-
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.06
21+
uses: rapidsai/shared-workflows/.github/workflows/pr-builder.yaml@branch-25.08
2222
checks:
2323
secrets: inherit
24-
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.06
24+
uses: rapidsai/shared-workflows/.github/workflows/checks.yaml@branch-25.08
2525
conda-python-build:
2626
needs: checks
2727
secrets: inherit
28-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.06
28+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-build.yaml@branch-25.08
2929
with:
3030
build_type: pull-request
3131
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
@@ -34,7 +34,7 @@ jobs:
3434
conda-python-tests:
3535
needs: conda-python-build
3636
secrets: inherit
37-
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.06
37+
uses: rapidsai/shared-workflows/.github/workflows/conda-python-tests.yaml@branch-25.08
3838
with:
3939
build_type: pull-request
4040
# This selects "ARCH=amd64 + the latest supported Python + CUDA".
@@ -43,7 +43,7 @@ jobs:
4343
wheel-build:
4444
needs: checks
4545
secrets: inherit
46-
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.06
46+
uses: rapidsai/shared-workflows/.github/workflows/wheels-build.yaml@branch-25.08
4747
with:
4848
build_type: pull-request
4949
# This selects the latest supported Python + CUDA
@@ -56,7 +56,7 @@ jobs:
5656
wheel-tests:
5757
needs: wheel-build
5858
secrets: inherit
59-
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.06
59+
uses: rapidsai/shared-workflows/.github/workflows/wheels-test.yaml@branch-25.08
6060
with:
6161
build_type: pull-request
6262
# This selects the latest supported Python + CUDA

.github/workflows/trigger-breaking-change-alert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
trigger-notifier:
1313
if: contains(github.event.pull_request.labels.*.name, 'breaking')
1414
secrets: inherit
15-
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.06
15+
uses: rapidsai/shared-workflows/.github/workflows/breaking-change-alert.yaml@branch-25.08
1616
with:
1717
sender_login: ${{ github.event.sender.login }}
1818
sender_avatar: ${{ github.event.sender.avatar_url }}

ci/build_python.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,3 @@ echo "__version__ = '$version'" > jupyterlab_nvdashboard/_version.py
2929
# node works correctly
3030
rapids-logger "Building JupyterLab NVDashboard conda package"
3131
RAPIDS_PACKAGE_VERSION=${version} rapids-conda-retry build --no-test conda/recipes/jupyterlab-nvdashboard
32-
33-
rapids-logger "Uploading JupyterLab NVDashboard conda package to S3"
34-
rapids-upload-conda-to-s3 python

ci/build_wheel.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,3 @@ python -m pip install build
4040
python -m build -s -w --outdir "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"
4141

4242
ci/validate_wheel.sh "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"
43-
44-
rapids-logger "Uploading JupyterLab NVDashboard wheels to S3"
45-
# Upload Python wheels to S3
46-
RAPIDS_PY_WHEEL_NAME="${package_name}" RAPIDS_PY_WHEEL_PURE="1" rapids-upload-wheels-to-s3 python "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"

0 commit comments

Comments
 (0)