From d7e5407d36b7b3cd5f8c407560e71a14a32be948 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Thu, 5 Dec 2024 20:25:56 -0800 Subject: [PATCH] Install with Conda quietly Sometimes the progress bar and other output activity causes issues in CI logs. It isn't necessary to include as we output the environment produced at the end. So quiet these install steps. --- ci/test_cpp.sh | 2 +- ci/test_python.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test_cpp.sh b/ci/test_cpp.sh index ee2b83b9fa..ef7933f150 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -15,7 +15,7 @@ rapids-dependency-file-generator \ --prepend-channel "${CPP_CHANNEL}" \ | tee env.yaml -rapids-mamba-retry env create --yes -f env.yaml -n test +rapids-mamba-retry env create -qy -f env.yaml -n test # Temporarily allow unbound variables for conda activation. set +u diff --git a/ci/test_python.sh b/ci/test_python.sh index 5bda753636..df16f20f9f 100755 --- a/ci/test_python.sh +++ b/ci/test_python.sh @@ -20,7 +20,7 @@ rapids-dependency-file-generator \ --prepend-channel "${CPP_CHANNEL}" --prepend-channel "${PYTHON_CHANNEL}" \ | tee env.yaml -rapids-mamba-retry env create --yes -f env.yaml -n test +rapids-mamba-retry env create -qy -f env.yaml -n test # Temporarily allow unbound variables for conda activation. set +u