Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tools/rapids-upload-artifacts-dir
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ if [ "$(ls -A "$RAPIDS_ARTIFACTS_DIR")" ]; then
upload_name=$(basename "${art_file}")
pkg_name="${pkg_prefix}.${upload_name}"
rapids-upload-to-s3 "${pkg_name}" "${art_file}"
if [ -d telemetry-artifacts ]; then
ls -l "${art_file}" >> telemetry-artifacts/artifact-list.txt
fi
done
else
echo "No additional artifacts found."
Expand Down
5 changes: 5 additions & 0 deletions tools/rapids-upload-to-anaconda
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,10 @@ for OBJ in $(jq -nr 'env.CONDA_ARTIFACTS | fromjson | .[]'); do
--no-progress \
${PKGS_TO_UPLOAD}

if [ -d telemetry-artifacts ]; then
ls -l "${UNTAR_DEST}"/*.tar.bz2 >> telemetry-artifacts/artifact-list.txt
ls -l "${UNTAR_DEST}"/*.conda >> telemetry-artifacts/artifact-list.txt
fi

echo ""
done
4 changes: 4 additions & 0 deletions tools/rapids-wheels-anaconda
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,7 @@ rapids-retry anaconda \
--no-progress \
"${WHEEL_DIR}"/*.whl
echo ""

if [ -d telemetry-artifacts ]; then
ls -l "${WHEEL_DIR}"/*.whl >> telemetry-artifacts/artifact-list.txt
fi