Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ env:
This project contains some scripts for managing CI artifacts.

* `rapids-download-{conda,wheels}-from-github`: download conda packages and wheels from the GitHub Actions artifact store
* `rapids-get-pr-artifact`: downloads conda packages or wheels produced by pull rquest CI in another repo
* `rapids-upload-to-anaconda-github`: downloads conda packages from GitHub Actions artifact store and uploads conda channels on anaconda.org
* `rapids-wheels-anaconda-github`: downloads wheels from GitHub Actions artifact store and uploads them to the RAPIDS nightly index at https://pypi.anaconda.org/rapidsai-wheels-nightly/simple/
* `rapids-package-name`: takes a package type and generate the artifact name (e.g. `conda_cpp` -> `rmm_conda_cpp_x86_64.tar.gz`)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# 2) PR number
# 3) "cpp" or "python", to get the artifact for the C++ or Python build, respectively
# 4) "wheel" or "conda", to get the wheel or conda package artifact, respectively
# 5) full commit hash
# 4) [optional] full commit hash, to get the artifact for a specific commit
set -euo pipefail

repo="rapidsai/${1}"
Expand Down
20 changes: 0 additions & 20 deletions tools/rapids-get-pr-conda-artifact

This file was deleted.

20 changes: 0 additions & 20 deletions tools/rapids-get-pr-wheel-artifact

This file was deleted.

2 changes: 1 addition & 1 deletion tools/rapids-init-pip
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# source rapids-init-pip;
# LIBRMM_WHEELHOUSE=$(
# RAPIDS_PY_WHEEL_NAME="librmm_cu12" rapids-get-pr-wheel-artifact rmm 1909 cpp
# RAPIDS_PY_WHEEL_NAME="librmm_cu12" rapids-get-pr-artifact rmm 1909 cpp wheel
# )
# echo "librmm-${RAPIDS_PY_CUDA_SUFFIX} @ file://$(echo "${LIBRMM_WHEELHOUSE}"/librmm_*.whl)" >> "${PIP_CONSTRAINT}"
#
Expand Down
4 changes: 2 additions & 2 deletions tools/rapids-rattler-channel-string
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
# "${RATTLER_CHANNELS[@]}"
#
# # prepend custom channels
# LIBRMM_CHANNEL=$(rapids-get-pr-conda-artifact rmm 1909 cpp)
# RMM_CHANNEL=$(rapids-get-pr-conda-artifact rmm 1909 python)
# LIBRMM_CHANNEL=$(rapids-get-pr-artifact rmm 1909 cpp conda)
# RMM_CHANNEL=$(rapids-get-pr-artifact rmm 1909 python conda)
# RAPIDS_PREPENDED_CONDA_CHANNELS=("${LIBRMM_CHANNEL}" "${RMM_CHANNEL}")
#
# source rapids-rattler-channel-string
Expand Down