File tree 2 files changed +10
-12
lines changed
2 files changed +10
-12
lines changed Original file line number Diff line number Diff line change 3
3
4
4
set -euo pipefail
5
5
6
+ rapids-logger " Downloading artifacts from previous jobs"
7
+ CPP_CHANNEL=$( rapids-download-conda-from-github cpp)
8
+ PYTHON_CHANNEL=$( rapids-download-conda-from-github python)
9
+
6
10
rapids-logger " Create test conda environment"
7
11
8
12
. /opt/conda/etc/profile.d/conda.sh
9
13
10
- RAPIDS_VERSION=" $( rapids-version) "
11
14
RAPIDS_VERSION_MAJOR_MINOR=" $( rapids-version-major-minor) "
12
15
export RAPIDS_VERSION_MAJOR_MINOR
13
16
14
17
rapids-dependency-file-generator \
15
18
--output conda \
16
19
--file-key docs \
17
- --matrix " cuda=${RAPIDS_CUDA_VERSION% .* } ;arch=$( arch) ;py=${RAPIDS_PY_VERSION} " | tee env.yaml
20
+ --matrix " cuda=${RAPIDS_CUDA_VERSION% .* } ;arch=$( arch) ;py=${RAPIDS_PY_VERSION} " \
21
+ --prepend-channel " ${CPP_CHANNEL} " \
22
+ --prepend-channel " ${PYTHON_CHANNEL} " \
23
+ | tee env.yaml
18
24
19
25
rapids-mamba-retry env create --yes -f env.yaml -n docs
20
26
conda activate docs
21
27
22
28
rapids-print-env
23
29
24
- rapids-logger " Downloading artifacts from previous jobs"
25
- CPP_CHANNEL=$( rapids-download-conda-from-github cpp)
26
- PYTHON_CHANNEL=$( rapids-download-conda-from-github python)
27
-
28
- rapids-mamba-retry install \
29
- --channel " ${CPP_CHANNEL} " \
30
- --channel " ${PYTHON_CHANNEL} " \
31
- " rmm=${RAPIDS_VERSION} " \
32
- " librmm=${RAPIDS_VERSION} "
33
-
34
30
RAPIDS_DOCS_DIR=" $( mktemp -d) "
35
31
export RAPIDS_DOCS_DIR
36
32
Original file line number Diff line number Diff line change 44
44
- cuda_version
45
45
- docs
46
46
- py_version
47
+ - depends_on_rmm
48
+ - depends_on_librmm
47
49
py_cpp_build :
48
50
output : pyproject
49
51
pyproject_dir : python/librmm
You can’t perform that action at this time.
0 commit comments