From 11294110e0a6200976a7ccb51477c7eea7df925f Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Mon, 22 Jan 2024 18:59:24 -0600 Subject: [PATCH] Add tests with RAFT CUDA 12.2 PR conda artifacts. --- ci/test_cpp.sh | 3 +++ ci/test_notebooks.sh | 5 +++++ ci/test_python.sh | 5 +++++ 3 files changed, 13 insertions(+) diff --git a/ci/test_cpp.sh b/ci/test_cpp.sh index b204c1dc59b..910364cac38 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -20,6 +20,8 @@ set -u CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) +LIBRAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2092 cpp) + RAPIDS_TESTS_DIR=${RAPIDS_TESTS_DIR:-"${PWD}/test-results"}/ mkdir -p "${RAPIDS_TESTS_DIR}" @@ -27,6 +29,7 @@ rapids-print-env rapids-mamba-retry install \ --channel "${CPP_CHANNEL}" \ + --channel "${LIBRAFT_CHANNEL}" \ libcugraph libcugraph_etl libcugraph-tests rapids-logger "Check GPU usage" diff --git a/ci/test_notebooks.sh b/ci/test_notebooks.sh index 653f23f947d..8d4ec4ac372 100755 --- a/ci/test_notebooks.sh +++ b/ci/test_notebooks.sh @@ -24,9 +24,14 @@ rapids-logger "Downloading artifacts from previous jobs" CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python) +LIBRAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2092 cpp) +RAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2092 python) + rapids-mamba-retry install \ --channel "${CPP_CHANNEL}" \ --channel "${PYTHON_CHANNEL}" \ + --channel "${LIBRAFT_CHANNEL}" \ + --channel "${RAFT_CHANNEL}" \ libcugraph pylibcugraph cugraph NBTEST="$(realpath "$(dirname "$0")/utils/nbtest.sh")" diff --git a/ci/test_python.sh b/ci/test_python.sh index 7eb5a08edc8..8dbe9461c35 100755 --- a/ci/test_python.sh +++ b/ci/test_python.sh @@ -22,6 +22,9 @@ rapids-logger "Downloading artifacts from previous jobs" CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp) PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python) +LIBRAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2092 cpp) +RAFT_CHANNEL=$(rapids-get-pr-conda-artifact raft 2092 python) + RAPIDS_TESTS_DIR=${RAPIDS_TESTS_DIR:-"${PWD}/test-results"} RAPIDS_COVERAGE_DIR=${RAPIDS_COVERAGE_DIR:-"${PWD}/coverage-results"} mkdir -p "${RAPIDS_TESTS_DIR}" "${RAPIDS_COVERAGE_DIR}" @@ -31,6 +34,8 @@ rapids-print-env rapids-mamba-retry install \ --channel "${CPP_CHANNEL}" \ --channel "${PYTHON_CHANNEL}" \ + --channel "${LIBRAFT_CHANNEL}" \ + --channel "${RAFT_CHANNEL}" \ libcugraph \ pylibcugraph \ cugraph \