File tree 2 files changed +6
-11
lines changed
2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 4
4
set -euo pipefail
5
5
6
6
rapids-configure-conda-channels
7
- # `rapids-configure-conda-channels` should only insert `rapidsai` channel into release builds
8
- conda config --remove channels rapidsai
9
-
10
7
11
8
# Setting channel priority per-repo until all RAPIDS can build using strict channel priority
12
9
# This will be replaced when we port this recipe to `rattler-build`
13
- if [[ " $RAPIDS_CUDA_VERSION " == 11.8 * && " $RAPIDS_CONDA_ARCH " == " linux64 " ]]; then
14
- rapids-logger " Not setting strict priority because of libcufile version constraints "
10
+ if [[ " $RAPIDS_CUDA_VERSION " == 11.* ]]; then
11
+ rapids-logger " Channel priority disabled for CUDA 11 builds "
15
12
else
16
- rapids-logger " Setting strict channel priority for conda builds"
13
+ rapids-logger " Setting strict channel priority for CUDA 12 builds"
17
14
conda config --set channel_priority strict
18
15
fi
19
16
Original file line number Diff line number Diff line change 4
4
set -euo pipefail
5
5
6
6
rapids-configure-conda-channels
7
- # `rapids-configure-conda-channels` should only insert `rapidsai` channel into release builds
8
- conda config --remove channels rapidsai
9
7
10
8
# Setting channel priority per-repo until all RAPIDS can build using strict channel priority
11
9
# This will be replaced when we port this recipe to `rattler-build`
12
- if [[ " $RAPIDS_CUDA_VERSION " == 11.8 * && " $RAPIDS_CONDA_ARCH " == " linux64 " ]]; then
13
- rapids-logger " Not setting strict priority because of libcufile version constraints "
10
+ if [[ " $RAPIDS_CUDA_VERSION " == 11.* ]]; then
11
+ rapids-logger " Channel priority disabled for CUDA 11 builds "
14
12
else
15
- rapids-logger " Setting strict channel priority for conda builds"
13
+ rapids-logger " Setting strict channel priority for CUDA 12 builds"
16
14
conda config --set channel_priority strict
17
15
fi
18
16
You can’t perform that action at this time.
0 commit comments