Skip to content

Commit

Permalink
Fix Conda uploads(rapidsai#634)
Browse files Browse the repository at this point in the history
Fix bash syntax for uploading conda packages

Authors:
  - Ray Douglass <[email protected]>

Approvers:
  - Dillon Cullinan

URL: rapidsai#634
  • Loading branch information
raydouglass committed Nov 23, 2020
1 parent e7f0726 commit afd94f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- PR #602 Fix `device_scalar` and its tests so that they use the correct CUDA stream
- PR #621 Make `rmm::cuda_stream_default` a `constexpr`
- PR #625 Use `librmm` conda artifact when building `rmm` conda package
- PR #634 Fix conda uploads

# RMM 0.16.0 (21 Oct 2020)

Expand Down
4 changes: 2 additions & 2 deletions ci/cpu/upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ export RMM_FILE=`conda build conda/recipes/rmm --python=$PYTHON --output`

gpuci_logger "Starting conda uploads"

if [ "$BUILD_LIBRMM" == "1" && "$UPLOAD_LIBRMM" == "1" ]; then
if [[ "$BUILD_LIBRMM" == "1" && "$UPLOAD_LIBRMM" == "1" ]]; then
test -e ${LIBRMM_FILE}
echo "Upload librmm"
echo ${LIBRMM_FILE}
gpuci_retry anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-rapidsai} ${LABEL_OPTION} --skip-existing ${LIBRMM_FILE}
fi

if [ "$BUILD_RMM" == "1" && "$UPLOAD_RMM" == "1" ]; then
if [[ "$BUILD_RMM" == "1" && "$UPLOAD_RMM" == "1" ]]; then
test -e ${RMM_FILE}
echo "Upload rmm"
echo ${RMM_FILE}
Expand Down

0 comments on commit afd94f8

Please sign in to comment.