From 47cd8c71fd5805fc96400f24acdd86b064d9442c Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 19 Mar 2024 08:22:51 -0500 Subject: [PATCH] Remove outdated conda_build.sh. (#4257) This PR removes the `conda_build.sh` script from the repository root. This script appears to be outdated and unusable with the current cugraph recipes. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Ray Douglass (https://github.com/raydouglass) URL: https://github.com/rapidsai/cugraph/pull/4257 --- conda_build.sh | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100755 conda_build.sh diff --git a/conda_build.sh b/conda_build.sh deleted file mode 100755 index 9bcabec9694..00000000000 --- a/conda_build.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env bash -# Copyright (c) 2021-2022, NVIDIA CORPORATION - -set -xe - -CUDA_REL=${CUDA_VERSION%.*} - -conda install conda-build anaconda-client conda-verify -y -conda build -c rapidsai -c rapidsai-nightly/label/cuda${CUDA_REL} -c conda-forge -c nvidia --python=${PYTHON} conda/recipes/cugraph - -if [ "$UPLOAD_PACKAGE" == '1' ]; then - export UPLOADFILE=`conda build -c rapidsai -c conda-forge -c nvidia --python=${PYTHON} conda/recipes/cugraph --output` - SOURCE_BRANCH=main - - test -e ${UPLOADFILE} - - - LABEL_OPTION="--label dev" - if [ "${LABEL_MAIN}" == '1' ]; then - LABEL_OPTION="--label main" - fi - echo "LABEL_OPTION=${LABEL_OPTION}" - - if [ -z "$MY_UPLOAD_KEY" ]; then - echo "No upload key" - return 0 - fi - - echo "Upload" - echo ${UPLOADFILE} - anaconda -t ${MY_UPLOAD_KEY} upload -u ${CONDA_USERNAME:-rapidsai} ${LABEL_OPTION} --force ${UPLOADFILE} --no-progress -else - echo "Skipping upload" -fi