Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
6 changes: 1 addition & 5 deletions ci/stable_install/install_and_test_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ set -euo pipefail

SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
source "${SCRIPT_DIR}/test_imports.sh"
source "${SCRIPT_DIR}/install_rapids_doctor.sh"

STABLE_RAPIDS_VERSION="26.6.*"

Expand Down Expand Up @@ -59,7 +58,7 @@ rapids-logger "Testing stable version install with Python $PYTHON_VERSION and CU

# use `-O` to override channels so we don't include `rapidsai-nightly`
conda create -n "$envName" -O -c rapidsai -c conda-forge -y \
rapids="$STABLE_RAPIDS_VERSION" python="$PYTHON_VERSION" "cuda-version==${CUDA_VERSION}"
rapids="$STABLE_RAPIDS_VERSION" python="$PYTHON_VERSION" "cuda-version==${CUDA_VERSION}" rapids-cli

conda activate "$envName"

Expand All @@ -79,9 +78,6 @@ declare -a RAPIDS_IMPORTS=(
)
testImports RAPIDS_IMPORTS

# Run RAPIDS health checks
installRapidsDoctor

rapids-logger "Running RAPIDS doctor smoke tests"
rapids doctor --verbose

Expand Down
5 changes: 1 addition & 4 deletions ci/stable_install/install_and_test_pip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ STABLE_RAPIDS_VERSION="26.6.*"
SCRIPT_DIR="$(dirname "${BASH_SOURCE[0]}")"
source "${SCRIPT_DIR}/bootstrap/pip.sh"
source "${SCRIPT_DIR}/test_imports.sh"
source "${SCRIPT_DIR}/install_rapids_doctor.sh"

while [[ $# -gt 0 ]]; do
case $1 in
Expand Down Expand Up @@ -83,6 +82,7 @@ PIP_INSTALL_PYPI=(
"pylibraft-${CUDA_SUFFIX}==${STABLE_RAPIDS_VERSION}"
"raft-dask-${CUDA_SUFFIX}==${STABLE_RAPIDS_VERSION}"
"rapidsmpf-${CUDA_SUFFIX}==${STABLE_RAPIDS_VERSION}"
"rapids-cli"
"${CUDA_TOOLKIT_SPEC}"
)

Expand Down Expand Up @@ -132,9 +132,6 @@ declare -a RAPIDS_IMPORTS=(
)
testImports RAPIDS_IMPORTS

# Run RAPIDS health checks
installRapidsDoctor

rapids-logger "Running RAPIDS doctor smoke tests"
rapids doctor --verbose

Expand Down
10 changes: 0 additions & 10 deletions ci/stable_install/install_rapids_doctor.sh

This file was deleted.

Loading