Skip to content

Commit

Permalink
Print debug information ot the console in anaconda upload stage (#894)
Browse files Browse the repository at this point in the history
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
  • Loading branch information
jeffoverflow authored Jul 20, 2020
1 parent 07ab1aa commit 1a8ab9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ci/scripts/conda/cpu/upload_anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if [ "$UPLOAD_ARCTERN" == "1" ]; then
test -e ${ARCTERN_FILE}
echo "Upload arctern..."
echo ${ARCTERN_FILE}
anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-arctern} ${LABEL_OPTION} --force ${ARCTERN_FILE}
anaconda -v -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-arctern} ${LABEL_OPTION} --force ${ARCTERN_FILE}
fi

if [ "$UPLOAD_ARCTERN_WEBSERVER" == "1" ]; then
Expand All @@ -36,5 +36,5 @@ if [ "$UPLOAD_ARCTERN_WEBSERVER" == "1" ]; then
test -e ${ARCTERN_WEBSERVER_FILE}
echo "Upload arctern-webserver..."
echo ${ARCTERN_WEBSERVER_FILE}
anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-arctern} ${LABEL_OPTION} --force ${ARCTERN_WEBSERVER_FILE}
anaconda -v -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-arctern} ${LABEL_OPTION} --force ${ARCTERN_WEBSERVER_FILE}
fi
4 changes: 2 additions & 2 deletions ci/scripts/conda/gpu/upload_anaconda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ if [ "$UPLOAD_ARCTERN" == "1" ]; then
test -e ${ARCTERN_FILE}
echo "Upload arctern..."
echo ${ARCTERN_FILE}
anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-arctern} ${LABEL_OPTION} --force ${ARCTERN_FILE}
anaconda -v -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-arctern} ${LABEL_OPTION} --force ${ARCTERN_FILE}
fi

if [ "$UPLOAD_ARCTERN_WEBSERVER" == "1" ]; then
Expand All @@ -38,5 +38,5 @@ if [ "$UPLOAD_ARCTERN_WEBSERVER" == "1" ]; then
test -e ${ARCTERN_WEBSERVER_FILE}
echo "Upload arctern-webserver..."
echo ${ARCTERN_WEBSERVER_FILE}
anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-arctern} ${LABEL_OPTION} --force ${ARCTERN_WEBSERVER_FILE}
anaconda -v -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-arctern} ${LABEL_OPTION} --force ${ARCTERN_WEBSERVER_FILE}
fi

0 comments on commit 1a8ab9e

Please sign in to comment.