From 20f94f04f9681aedb9861e1d95e06c0671a57156 Mon Sep 17 00:00:00 2001 From: David Gardner Date: Mon, 30 Dec 2024 12:29:19 -0800 Subject: [PATCH] Add arch to conda artifact [no-ci] --- ci/scripts/github/conda.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/scripts/github/conda.sh b/ci/scripts/github/conda.sh index c6a44de41..0a026f5d1 100755 --- a/ci/scripts/github/conda.sh +++ b/ci/scripts/github/conda.sh @@ -48,9 +48,9 @@ if [[ " ${CI_SCRIPT_ARGS} " =~ " upload " ]]; then rapids-logger "Building Conda Package... Done" else # if we didn't receive the upload argument, we can still upload the artifact to S3 - tar cfj "${WORKSPACE_TMP}/conda.tar.bz" "${RAPIDS_CONDA_BLD_OUTPUT_DIR}" + tar cfj "${WORKSPACE_TMP}/conda-${REAL_ARCH}.tar.bz" "${RAPIDS_CONDA_BLD_OUTPUT_DIR}" ls -lh ${WORKSPACE_TMP}/ rapids-logger "Pushing results to ${DISPLAY_ARTIFACT_URL}/" - upload_artifact "${WORKSPACE_TMP}/conda.tar.bz" + upload_artifact "${WORKSPACE_TMP}/conda-${REAL_ARCH}.tar.bz" fi