Skip to content

Commit

Permalink
Install with Conda quietly
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jakirkham committed Dec 6, 2024
1 parent 4fe0125 commit d7e5407
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/test_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d7e5407

Please sign in to comment.