Skip to content

Commit

Permalink
try strict channel priority
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Nov 4, 2024
1 parent 11fbbd5 commit c27268e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/test_notebooks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ set -Eeuo pipefail

. /opt/conda/etc/profile.d/conda.sh

# strict channel priority ensures that the packages in built in CI are foound,
# not cugraph-dgl nightlies produced from the 'cugraph' repo
conda config --set channel_priority strict

RAPIDS_VERSION="$(rapids-version)"

rapids-logger "Generate notebook testing dependencies"
Expand All @@ -26,10 +30,6 @@ rapids-logger "Downloading artifacts from previous jobs"
CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp)
PYTHON_CHANNEL=$(rapids-download-conda-from-s3 python)

# strict channel priority ensures that the packages in built in CI are foound,
# not cugraph-dgl nightlies produced from the 'cugraph' repo
conda config --set channel_priority strict

rapids-mamba-retry install \
--channel "${CPP_CHANNEL}" \
--channel "${PYTHON_CHANNEL}" \
Expand Down
4 changes: 4 additions & 0 deletions ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ cd "$(dirname "$(realpath "${BASH_SOURCE[0]}")")"/../

. /opt/conda/etc/profile.d/conda.sh

# strict channel priority ensures that the packages in built in CI are foound,
# not cugraph-dgl nightlies produced from the 'cugraph' repo
conda config --set channel_priority strict

RAPIDS_VERSION="$(rapids-version)"

rapids-logger "Downloading artifacts from previous jobs"
Expand Down

0 comments on commit c27268e

Please sign in to comment.