Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-cuvs-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ jobs:
GIT_DESCRIBE_TAG="$(git describe --tags --abbrev=0)"
GIT_DESCRIBE_TAG="${GIT_DESCRIBE_TAG:1}" # remove leading 'v'
if [[ ! $GIT_DESCRIBE_TAG =~ [a-z] ]]; then
rapids-logger "Most recent tag is for release, adding `rapidsai` channel and removing `rapidsai-nightly` and `dask/label/dev` channels."
sed -i 's|rapidsai-nightly|rapidsai|;\|dask/label/dev|d' context/condarc
rapids-logger "Most recent tag is for release, adding the `rapidsai` channel and removing the `rapidsai-nightly` channel."
sed -i 's|rapidsai-nightly|rapidsai|' context/condarc
else
rapids-logger "Most recent tag is an alpha. Build will use nightly channels."
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-rapids-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ jobs:
GIT_DESCRIBE_TAG="$(git describe --tags --abbrev=0)"
GIT_DESCRIBE_TAG="${GIT_DESCRIBE_TAG:1}" # remove leading 'v'
if [[ ! $GIT_DESCRIBE_TAG =~ [a-z] ]]; then
rapids-logger "Most recent tag is for release, adding `rapidsai` channel and removing `rapidsai-nightly` and `dask/label/dev` channels."
sed -i 's|rapidsai-nightly|rapidsai|;\|dask/label/dev|d' context/condarc
rapids-logger "Most recent tag is for release, adding the `rapidsai` channel and removing the `rapidsai-nightly` channel."
sed -i 's|rapidsai-nightly|rapidsai|' context/condarc
else
rapids-logger "Most recent tag is an alpha. Build will use nightly channels."
fi
Expand Down
3 changes: 0 additions & 3 deletions context/condarc
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
auto_update_conda: False
channels:
- rapidsai-nightly
- dask/label/dev
- pytorch
- conda-forge
- nvidia
Loading