From 44a46cfa1311c9ca9cf5543bce2e53159bd1eeab Mon Sep 17 00:00:00 2001 From: GALI PREM SAGAR Date: Wed, 16 Mar 2022 17:20:18 -0500 Subject: [PATCH] Set `main` label by default (#559) This PR changes the `label` option to use `main` for all package builds. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Mark Sadang (https://github.com/msadang) URL: https://github.com/rapidsai/raft/pull/559 --- ci/cpu/upload.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/ci/cpu/upload.sh b/ci/cpu/upload.sh index ddeae5284f..80c7bd0b70 100755 --- a/ci/cpu/upload.sh +++ b/ci/cpu/upload.sh @@ -9,11 +9,9 @@ set -e export GPUCI_RETRY_MAX=3 export GPUCI_RETRY_SLEEP=30 -# Set label to testing by default. Use main label for main branch -LABEL_OPTION="--label testing" -if [[ "${SOURCE_BRANCH}" == "main" ]]; then - LABEL_OPTION="--label main" -fi +# Set label option. +# LABEL_OPTION="--label testing" +LABEL_OPTION="--label main" # Skip uploads unless BUILD_MODE == "branch" if [ ${BUILD_MODE} != "branch" ]; then