File tree Expand file tree Collapse file tree 8 files changed +24
-1
lines changed Expand file tree Collapse file tree 8 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -12,17 +12,22 @@ export RAPIDS_VERSION_MAJOR_MINOR
1212rapids-logger " Create test conda environment"
1313. /opt/conda/etc/profile.d/conda.sh
1414
15+ rapids-logger " Configuring conda strict channel priority"
16+ conda config --set channel_priority strict
17+
1518ENV_YAML_DIR=" $( mktemp -d) "
1619
1720rapids-logger " Downloading artifacts from previous jobs"
1821CPP_CHANNEL=$( rapids-download-conda-from-github cpp)
19- PYTHON_CHANNEL=$( rapids-download-conda-from-github python)
22+ PYTHON_CHANNEL=$( rapids-download-from-github " $( rapids-package-name conda_python cudf) " )
23+ PYTHON_NOARCH_CHANNEL=$( rapids-download-from-github " $( rapids-package-name conda_python cudf-noarch --pure --cuda " ${RAPIDS_CUDA_VERSION} " ) " )
2024
2125rapids-dependency-file-generator \
2226 --output conda \
2327 --file-key docs \
2428 --prepend-channel " ${CPP_CHANNEL} " \
2529 --prepend-channel " ${PYTHON_CHANNEL} " \
30+ --prepend-channel " ${PYTHON_NOARCH_CHANNEL} " \
2631 --matrix " cuda=${RAPIDS_CUDA_VERSION% .* } ;arch=$( arch) ;py=${RAPIDS_PY_VERSION} " | tee " ${ENV_YAML_DIR} /env.yaml"
2732
2833rapids-mamba-retry env create --yes -f " ${ENV_YAML_DIR} /env.yaml" -n docs
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ set -euo pipefail
77rapids-logger " Create checks conda environment"
88. /opt/conda/etc/profile.d/conda.sh
99
10+ rapids-logger " Configuring conda strict channel priority"
11+ conda config --set channel_priority strict
12+
1013ENV_YAML_DIR=" $( mktemp -d) "
1114
1215rapids-dependency-file-generator \
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ set -euo pipefail
77rapids-logger " Create checks conda environment"
88. /opt/conda/etc/profile.d/conda.sh
99
10+ rapids-logger " Configuring conda strict channel priority"
11+ conda config --set channel_priority strict
12+
1013ENV_YAML_DIR=" $( mktemp -d) "
1114
1215rapids-dependency-file-generator \
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ set -euo pipefail
66
77. /opt/conda/etc/profile.d/conda.sh
88
9+ rapids-logger " Configuring conda strict channel priority"
10+ conda config --set channel_priority strict
11+
912rapids-logger " Generate C++ testing dependencies"
1013
1114ENV_YAML_DIR=" $( mktemp -d) "
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ set -euo pipefail
66
77. /opt/conda/etc/profile.d/conda.sh
88
9+ rapids-logger " Configuring conda strict channel priority"
10+ conda config --set channel_priority strict
11+
912# This script runs compute-sanitizer on a single libcudf test executable
1013# Usage: ./run_compute_sanitizer_test.sh TOOL_NAME TEST_NAME [additional gtest args...]
1114# Example: ./run_compute_sanitizer_test.sh memcheck AST_TEST
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ set -euo pipefail
66
77. /opt/conda/etc/profile.d/conda.sh
88
9+ rapids-logger " Configuring conda strict channel priority"
10+ conda config --set channel_priority strict
11+
912rapids-logger " Downloading artifacts from previous jobs"
1013CPP_CHANNEL=$( rapids-download-conda-from-github cpp)
1114
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ set -euo pipefail
66
77. /opt/conda/etc/profile.d/conda.sh
88
9+ rapids-logger " Configuring conda strict channel priority"
10+ conda config --set channel_priority strict
11+
912rapids-logger " Downloading artifacts from previous jobs"
1013CPP_CHANNEL=$( rapids-download-conda-from-github cpp)
1114PYTHON_CHANNEL=$( rapids-download-from-github " $( rapids-package-name conda_python cudf) " )
You can’t perform that action at this time.
0 commit comments