From d4810b6109e4a9a6b7e58c33dfd574d78ac1652b Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 9 Dec 2024 22:05:52 -0600 Subject: [PATCH] allow path conflicts in conda builds --- ci/build_cpp.sh | 4 +++- ci/build_python.sh | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ci/build_cpp.sh b/ci/build_cpp.sh index 2a347b7e..7ecb5930 100755 --- a/ci/build_cpp.sh +++ b/ci/build_cpp.sh @@ -15,7 +15,9 @@ rapids-print-env rapids-logger "Begin cpp build" -conda config --set path_conflict prevent +# this can be set back to 'prevent' once the xorg-* migrations are completed +# ref: https://github.com/rapidsai/cucim/issues/800#issuecomment-2529593457 +conda config --set path_conflict warn sccache --zero-stats diff --git a/ci/build_python.sh b/ci/build_python.sh index 4c942e09..13f9d8ed 100755 --- a/ci/build_python.sh +++ b/ci/build_python.sh @@ -16,7 +16,10 @@ rapids-print-env rapids-generate-version > ./VERSION rapids-logger "Begin py build" -conda config --set path_conflict prevent + +# this can be set back to 'prevent' once the xorg-* migrations are completed +# ref: https://github.com/rapidsai/cucim/issues/800#issuecomment-2529593457 +conda config --set path_conflict warn CPP_CHANNEL=$(rapids-download-conda-from-s3 cpp)