Skip to content

Commit d76b6c2

Browse files
authored
remove rapids-get-pr-{conda,wheel}-artifact (#209)
1 parent 48e98fc commit d76b6c2

File tree

6 files changed

+5
-44
lines changed

6 files changed

+5
-44
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ env:
3838
This project contains some scripts for managing CI artifacts.
3939

4040
* `rapids-download-{conda,wheels}-from-github`: download conda packages and wheels from the GitHub Actions artifact store
41+
* `rapids-get-pr-artifact`: downloads conda packages or wheels produced by pull rquest CI in another repo
4142
* `rapids-upload-to-anaconda-github`: downloads conda packages from GitHub Actions artifact store and uploads conda channels on anaconda.org
4243
* `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/
4344
* `rapids-package-name`: takes a package type and generate the artifact name (e.g. `conda_cpp` -> `rmm_conda_cpp_x86_64.tar.gz`)

tools/_rapids-get-pr-artifact renamed to tools/rapids-get-pr-artifact

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# 2) PR number
77
# 3) "cpp" or "python", to get the artifact for the C++ or Python build, respectively
88
# 4) "wheel" or "conda", to get the wheel or conda package artifact, respectively
9-
# 5) full commit hash
9+
# 5) [optional] full commit hash, to get the artifact for a specific commit
1010
set -euo pipefail
1111

1212
repo="rapidsai/${1}"

tools/rapids-get-pr-conda-artifact

Lines changed: 0 additions & 20 deletions
This file was deleted.

tools/rapids-get-pr-wheel-artifact

Lines changed: 0 additions & 20 deletions
This file was deleted.

tools/rapids-init-pip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
# source rapids-init-pip;
99
# LIBRMM_WHEELHOUSE=$(
10-
# RAPIDS_PY_WHEEL_NAME="librmm_cu12" rapids-get-pr-wheel-artifact rmm 1909 cpp
10+
# RAPIDS_PY_WHEEL_NAME="librmm_cu12" rapids-get-pr-artifact rmm 1909 cpp wheel
1111
# )
1212
# echo "librmm-${RAPIDS_PY_CUDA_SUFFIX} @ file://$(echo "${LIBRMM_WHEELHOUSE}"/librmm_*.whl)" >> "${PIP_CONSTRAINT}"
1313
#

tools/rapids-rattler-channel-string

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
# "${RATTLER_CHANNELS[@]}"
2323
#
2424
# # prepend custom channels
25-
# LIBRMM_CHANNEL=$(rapids-get-pr-conda-artifact rmm 1909 cpp)
26-
# RMM_CHANNEL=$(rapids-get-pr-conda-artifact rmm 1909 python)
25+
# LIBRMM_CHANNEL=$(rapids-get-pr-artifact rmm 1909 cpp conda)
26+
# RMM_CHANNEL=$(rapids-get-pr-artifact rmm 1909 python conda)
2727
# RAPIDS_PREPENDED_CONDA_CHANNELS=("${LIBRMM_CHANNEL}" "${RMM_CHANNEL}")
2828
#
2929
# source rapids-rattler-channel-string

0 commit comments

Comments
 (0)