Skip to content

Commit

Permalink
strict channel priority did not quite work, try just hard-coding a la…
Browse files Browse the repository at this point in the history
…rge version number
  • Loading branch information
jameslamb committed Nov 4, 2024
1 parent 220a954 commit 7494635
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ export CMAKE_GENERATOR=Ninja

rapids-print-env

version=$(rapids-generate-version)
# TODO: revert this once we start publishing nightly packages
# from the 'cugraph-gnn' repo and stop publishing them from
# the 'cugraph' / 'wholegraph' repos
#version=$(rapids-generate-version)
version="24.12.00a1000"

rapids-logger "Begin cpp build"

Expand Down
6 changes: 5 additions & 1 deletion ci/build_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ rapids-print-env

CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp)

rapids-generate-version > ./VERSION
# TODO: revert this once we start publishing nightly packages
# from the 'cugraph-gnn' repo and stop publishing them from
# the 'cugraph' / 'wholegraph' repos
# rapids-generate-version > ./VERSION
echo "24.12.00a1000" > ./VERSION

sccache --zero-stats

Expand Down
4 changes: 0 additions & 4 deletions ci/test_notebooks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,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

0 comments on commit 7494635

Please sign in to comment.